I have a page where fields are added dynamically by a JS running at the page load. So in the page I have html code like this
How can I access this element in c# when a button is clicked - I'm looking for something like getElementById( 'A1') in JavaScript
Thanks
Avish
Code:
<TR id='TR_A1' style='display:block'> <TD id='A1Name' name='A1Name' >A1</TD> <TD> <textarea ID='A1Value' name='A1Value' rows='6' cols='45'></textarea></TD> </TR>
Thanks
Avish
Comment