Hi,
I would like to be able to change my html table when I select list item from the dropdown menu.
For example,
Currently, when the page loads, the html table only renders current method.
<tbody>
<tr>
<th><asp:TextBox ID="TextBox1" runat="server"></asp:TextBox></th>
<th><asp:TextBox ID="TextBox2" runat="server"></asp:TextBox></th>
<th><asp:TextBox ID="TextBox3" runat="server"></asp:TextBox></th>
</tr>
<tr>
<%=current()%>
</tr>
</tbody>
I would like to build logic for, If I select weekly option from the dropdown menu, I would like the html table to render the weekly().method.
I am little unsure, how to go about doing this.
Go to the complete details ...