怎么把二维数组绑定到DropDownList?我想应该可以,但不知道怎么做.
我想让DropDownList的文本为'一般问题''普通问题',而值分别对应为'0'和'1'
string[,] aa={{"0","1"},{"一般问题","普通问题"}};
........................
....用DataTable??吗?怎么实现?.........
.......................
DropDownList1.DataTextField=?;
DropDownList1.DataValueField=?;
DropDownList1.DataSource=?;
DropDownList1.DataBind();