locked
Master Page Refresh RRS feed

  • Question

  • I am developing  a c# web application. I have a master page setup with multiple web pages. However when i navigate between the web pages the master page is unnecessarily refreshed each time. What i want to do it to leave the master page static and only change what the content within the container as i navigate between the web pages.

    Is this possible or do master pages merely facilitate a constant look and feel?
    Monday, November 3, 2008 3:39 PM

Answers

  •  Hi ,
    If you want to remain master page static you could use ASP.NET AJAX  to achieve, the situation you mentioned  is a by-design feature.

    The content file of the master page will finally be rendered to a whole one page then send to the client,it's very diferent from the structure of frames.

    Please check the following article to have an overview of the Master Page.
    http://msdn.microsoft.com/en-us/library/wtxbf3hh.aspx

    Thanks
    Wednesday, November 5, 2008 10:17 AM