dropdownlist取值问题
我使用这样绑定的 DropDownList1.DataSource = ds.Tables[0];
DropDownList1.DataValueField = "id";
DropDownList1.DataTextField = "typename";
DropDownList1.DataBind();
下面这个会错 数据应该有的,我只知道它要取的第几个
DropDownList1.Items[2].Text;// ??
或者怎么样取到第N个的值??