美文网首页
DropDownList添加第一个选项

DropDownList添加第一个选项

作者: 青木川_ | 来源:发表于2018-05-08 15:02 被阅读7次

    public void InitDrop()
    {
    droptype.DataSource = sqlhelper.publicFun("select * from tb_bigclass where sonType_Id=48");
    droptype.DataTextField = "bigclass_Name";
    droptype.DataValueField = "bigclass_Id";
    droptype.DataBind();

            droptype.Items.Insert(0, new ListItem("选择类型", ""));
        }
    

    页面代码:
    <asp:DropDownList ID="droptype" runat="server" class="col-xs-10 col-sm-5">
    </asp:DropDownList>

    相关文章

      网友评论

          本文标题:DropDownList添加第一个选项

          本文链接:https://www.haomeiwen.com/subject/xdfwrftx.html