Hi all,
I have in my Default.aspx a simple table like this:
HTML Code:
<table>
<tr>
<td>
asp:Content ID="ContentLeft" ContentPlaceHolderID="HeadContent" runat="server">
<asp:Button ID="btn1" runat="server" Text="First form" />
<asp:Button ID="btn2" runat="server" Text="Second form" />
<asp:Button ID="btn3" runat="server" Text="Third form" />
/asp:Content>
</td>
<td>
<asp:Content ID="ContentCenter1" ContentPlaceHolderID="MainContent" runat="server">
</td>
</tr>
</table>
Is it possible to replace the ContentCenter based on the button clic?
For example, if the user clicks on btn2, I need to replace the ContentCenter1 with another content, placed (for example) in the Default.aspx itself.
Luigi