四大列表控件之DropDownList控件(单选的下拉列表)

Default.aspx

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>无标题页</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    
    </div>
    学生列表:<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" 
        Width="146px">
    </asp:DropDownList>
    </form>
</body>
</html>

绑定数据到DropDownList控件

public partial class _Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!Page.IsPostBack)
            {
                //数据生成
                DataSet ds = new DataSet();
                ds.Tables.Add("stu");
                ds.Tables["stu"].Columns.Add("stuNo", typeof(int));
                ds.Tables["stu"].Columns.Add("stuName", typeof(string));
                ds.Tables["stu"].Columns.Add("stuScore", typeof(int));
                ds.Tables["stu"].Rows.Add(new object[] { 1, "张一", 100 });
                ds.Tables["stu"].Rows.Add(new object[] { 2, "王二", 100 });
                ds.Tables["stu"].Rows.Add(new object[] { 3, "李三", 100 });
                ds.Tables["stu"].Rows.Add(new object[] { 4, "赵四", 100 });
                ds.Tables["stu"].Rows.Add(new object[] { 5, "周五", 100 });
                //绑定数据到DropDownList控件
                this.DropDownList1.DataSource = ds.Tables["stu"];
                this.DropDownList1.DataValueField = "stuNo";
                this.DropDownList1.DataTextField = "stuName";
                this.DropDownList1.DataBind();
            }

        }

运行结果:
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值