asp.net数据显示到页面

来源:互联网 发布:知更 杨千嬅 歌词 编辑:程序博客网 时间:2024/05/18 02:18

前端页面代码

</asp:Label>&nbsp;<asp:DropDownList

                ID="ddlKm" runat="server">

            </asp:DropDownList>


.cs文件

private void BindDropDownList()
    {
        SqlConnection conn = BaseClass.DBCon();
        conn.Open();
        SqlCommand cmd = new SqlCommand("select * from tb_Lesson", conn);
        SqlDataReader sdr = cmd.ExecuteReader();
        ddlKm.DataSource = sdr;
        ddlKm.DataTextField = "LessonName";
        ddlKm.DataBind();
        conn.Close();
    }

数据库


0 0
原创粉丝点击