我在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
。