绑定 DropDownList

注:ds为DataSet

            DataTable table=ds.Tables["mytable"];
            
foreach(DataRow row in table.Rows)
            
{
                mylist.Items.Add(
new ListItem(row[1].ToString(),row[0].ToString()));
            }
也可以用
            mylist.DataSource=ds.Tables["mytable"].DefaultView;
            mylist.DataTextField
="tname";
            mylist.DataValueField
="tid";
            mylist.DataBind();

注:BindList()最好写在OnInit中

        Web 窗体设计器生成的代码

posted on 2004-09-04 11:17  骇狗  阅读(808)  评论(0编辑  收藏  举报

导航