DropDownList添加第一个选项

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("选择类型", ""));
    }

页面代码:

你可能感兴趣的:(DropDownList添加第一个选项)