私は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
。