idqfizz
03-22-2006, 07:47 AM
Ok im rather new with using asp.net and I have a question about changing the content in a table column using an imagebutton. Whenever I click the imagebutton i want the iframe inside the table to load a new html page.
Currently it looks something like this:
<table>
<tr>
<td>
<asp:imagebutton imageurl="button.gif" id="button1" onclick="button1_click" runat="server"></asp:imagebutton>
</td>
<td>
<iframe id="container" src="page1.htm"></iframe>
</td>
</tr>
</table>
Currently it looks something like this:
<table>
<tr>
<td>
<asp:imagebutton imageurl="button.gif" id="button1" onclick="button1_click" runat="server"></asp:imagebutton>
</td>
<td>
<iframe id="container" src="page1.htm"></iframe>
</td>
</tr>
</table>