arraylist 怎么绑定到dropdownlist

ArrayListarr=newArrayList();Class1c1=newClass1();c1.a=11;c1.b=12;arr.Add(c1);Class1c2... ArrayList arr = new ArrayList();
Class1 c1 = new Class1();
c1.a = 11;
c1.b = 12;
arr.Add(c1);
Class1 c2 = new Class1();
c2.a = 21;
c2.b = 22;
arr.Add(c2);

怎么把数据绑定到dropdownlist呢
展开
 我来答
996488836
2011-08-01 · TA获得超过623个赞
知道小有建树答主
回答量:313
采纳率:100%
帮助的人:322万
展开全部
我已经测试过了 没问题。
ArrayList arr = new ArrayList();
Class1 c1 = new Class1 ();
c1.a = 11;
c1.b = 12;
arr.Add(c1.a);
arr.Add(c1.b);
Class1 c2 = new Class1 ();
c2.a = 21;
c2.b = 22;
arr.Add(c2.a);
arr.Add(c2.b);
ListItemCollection listBoxData = new ListItemCollection();
for (int i = 0; i < arr.Count;i++ )
{
listBoxData.Add(new ListItem(arr[i].ToString(), arr[i].ToString()));

}
DropDownList1.DataSource = listBoxData;
DropDownList1.DataBind();
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
平梦醉神风1I
2011-08-01 · TA获得超过1510个赞
知道小有建树答主
回答量:691
采纳率:0%
帮助的人:1024万
展开全部
DropDownList2必须设置DataValueField和DataTextField属性,来指明DropDownList要显示的Value和Text,这要看你的Class1怎么定义的了

假设
public class Class1
{
public int Id { get; set; }
public string Text { get; set; }
}
那么可以
this.DropDownList2.DataSource = arr;
this.DropDownList2.DataTextField = "Text";
this.DropDownList2.DataValueField = "Id";
this.DropDownList2.DataBind();
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
jeffrey_1989
2011-08-01
知道答主
回答量:23
采纳率:0%
帮助的人:16.3万
展开全部
在Class1中将a和b封装成字段
class Class1
{
int a;

public int A
{
get { return a; }
set { a = value; }
}
int b;

public int B
{
get { return b; }
set { b = value; }
}
}

数据绑定代码如下
DropDownList1.DataTextField = "A";
DropDownList1.DataValueField = "B";
DropDownList1.DataSource = arr;
DropDownList1.DataBind();
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式