Click here to Skip to main content
15,901,505 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi,

I have created one master page with Image Logo, and left side i have created tree view with Root Folders and sub folders.

DotNet
-VB
-C#
Java
-Springs
-Hibernet

and i created different page for each sub folder

Ex: for VB it will navigate to VB.ASPX page
for C# it will navigate to CSharp.ASPX page.

What i am looking for is, when i click on any subfolder, the entire page is completely refreshing (With image and tree view controls).

Is there any way to implement the above scenario without refresh the entire page?

Could anyone suggest me on this?

Many thanks in advance.

Thanks
Venkat.
Posted

Put all the thing which you want to refresh in update panel.
 
Share this answer
 
XML
<asp:UpdatePanel ID="updatepanel1" runat="server">
                 <ContentTemplate>
                         <asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server"></asp:ContentPlaceHolder>
                 </ContentTemplate>
             </asp:UpdatePanel>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900