hi,
Ive got ASP.net to create a table with 2 rows and 1 colunm successfully programatically.
Consider the following html code below.
<table id="Table1" Runat="server">
<tr>
<td>Hello world 1</td>
<tr>
<td>Hello world 2</td>
</tr>
</tr>
Suppose I got Asp.net to generate the html code above already. Now how do I edit each row or column individually? For example,
I have a button. When press, it changes "Hello world 2" to "January" thats located on the second row of the table? Thanks in advance.
Ive got ASP.net to create a table with 2 rows and 1 colunm successfully programatically.
Consider the following html code below.
<table id="Table1" Runat="server">
<tr>
<td>Hello world 1</td>
<tr>
<td>Hello world 2</td>
</tr>
</tr>
Suppose I got Asp.net to generate the html code above already. Now how do I edit each row or column individually? For example,
I have a button. When press, it changes "Hello world 2" to "January" thats located on the second row of the table? Thanks in advance.