4

我在ASP.NET 1.1中工作。

我正在动态添加一个复选框,改变计数值,如下所示:

<INPUT id='btnCheck" + count.ToString() + "' name='btnCheck" + count.ToString() + "' type='checkbox' value='" + row["EmpId"].ToString() + "' Runat='server' Width='50px'>

现在我能够得到这个——id='btnCheck" + count.ToString()

value in code behind. But I am not able to get to refer ths ID from code behind and get the value='" + row["EmpId"].ToString() + "'为此ID

4

1 回答 1

2

您不能像这样添加复选框,您正在使 html 字符串不是服务器控件,而是使用 CheckBox 类来实例化其对象

CheckBox ch = new CheckBox();

在页面控件中添加创建的复选框。

this.Controls.Add(ch);
于 2013-03-14T09:16:50.713 回答