Hi
I want to make a reference to a dynamically created asp:checkbox:
string strcheckboxname ="chkbox1";
((CheckBox)Table1.Rows[i].FindControl(strcheckboxname)).Visible = true;
Unfortunately this does not work? what would be the right way of doing
it?
ch Beffmans
Eliyahu Goldin - 18 Jul 2005 09:48 GMT
Try
Rows[i].Cells[j].FindControl ...
Eliyahu
> Hi
>
[quoted text clipped - 9 lines]
>
> *** Sent via Developersdex http://www.developersdex.com ***
Beffmans - 19 Jul 2005 00:00 GMT
yes but then you still would be needing the controlname..
and I can't use a variable to do this?
B
Beffmans - 19 Jul 2005 02:39 GMT