【发布时间】:2013-03-02 13:28:17
【问题描述】:
我正在使用 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。
【问题讨论】: