UpdatePanel to load another .aspx or .html page without refresh

EDN Admin

Well-known member
Joined
Aug 7, 2010
Messages
12,794
Location
In the Machine
I have a web project. There is a master page and the menu is built within the master page. The content placeholders contain the pages to be called by the menu items. I want to call the pages through AJAX using updatepanel and scriptmanager. Wondering how to do this for all the pages and to load the pages without whole page refresh <asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server
<asp:UpdatePanel ID="UpdatePanel1" runat="server
<Triggers>
<asp:AsyncPostBackTrigger ControlID="forms" EventName="LinkButton </asp:AsyncPostBackTrigger>
</Triggers>

</asp:UpdatePanel>
</asp:ContentPlaceHolder>

rootkit123

View the full article
 
Back
Top