使用value属性创建动态asp.net复选框

时间:2016-04-14 08:04:53

标签: c# asp.net checkbox code-behind

如何在asp.net中将值属性添加到动态添加到面板的复选框中。 例如:

CheckBoxList chkIrList = new CheckBoxList();
chkIrList.DataValueField = "UserId";
chkIrList.DataTextField = "Name";
chkIrList.DataSource = DT;
chkIrList.DataBind();

生成的html不包含值字段:

<input id="ctl26_0" type="checkbox" name="ctl26$0">
<label for="ctl26_0">XYZ</label>

1 个答案:

答案 0 :(得分:0)

现在我在页面中插入了一个checkboxlist控件,然后从后面的代码中将listitem数据添加到该复选框列表中。现在可以使用value属性。