Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 86373
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T22:14:09+00:00 2026-05-10T22:14:09+00:00

Can I use Update panel in masterpage to wrap nested pages so that when

  • 0

Can I use Update panel in masterpage to wrap nested pages so that when browsing from one page to the other client only gets a partial refresh (MasterPage doesn’t get reloaded).

If so – how? Do I Just put an update panel around the ContentPlaceholder in the Master Page?

Any help appreciated!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T22:14:10+00:00Added an answer on May 10, 2026 at 10:14 pm

    I do not advise you to wrap an entire page in an UpdatePanel, for the following reasons:

    • If you want your site to be index by Search Engines, you will need to display your content on separate pages…just having a different querystring on each content section is enough. This is because for search engines Content Is King and since search engines currently cannot index dynamically generated data, they will not be able to index your pages.

    • Wrapping entire pages in an Update Panel is very dangerous because of the huge overhead that is sent to the server. You will see a significant performance decrease if you do so. Read this article for more information on the subject

    • Because of this huge overhead, it is suggested to use the Update Panel to update just small sections of the website (like little box widgets on the side, etc…) and not whole content sections.

    • Wrapping content sections in an update panel means that you will have to go the extra mile dynamically changing the url (using # anchors) manually yourself, and this is so that you will give users the ability to use the back button on their browser to go to the previous section of the site. Not having the ability to go back in a page is very annoying for users


    Here is an example that demonstrates the problem with UpdatePanels.

    The following is code for a simple aspx page with a label and a button :

    <asp:ScriptManager ID='ScriptManager1' runat='server' /> <asp:UpdatePanel runat='server' ID='up1'>  <ContentTemplate>    <asp:Label runat='server' ID='Label1' Text='Update Me!' /><br />    <asp:Button runat='server' ID='Button1'       Text='Postback Update' OnClick='Button1_Click' />  </ContentTemplate> </asp:UpdatePanel> 

     

    protected void Button1_Click(object sender, EventArgs e) {   Label1.Text = DateTime.Now.ToLongDateString(); } 

    And the following is a partial postback done with the UpdatePanel when the button is clicked (notice the huge overhead involved) :

                      alt text
    (source: encosia.com)

    As you can see, the server is basically sending all the elements that are in the UpdatePanel back to the client.


    On the other hand, here is an example that involves using ASP.Net Page Methods. Notice the response sent from the server this time (no UpdatePanels involved) :

                        alt text
    (source: encosia.com)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 179k
  • Answers 180k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer It's called the parallax a effect. Here's a link to… May 12, 2026 at 3:57 pm
  • Editorial Team
    Editorial Team added an answer Planning to "gracefully upgrade your website" doesn't start when you're… May 12, 2026 at 3:57 pm
  • Editorial Team
    Editorial Team added an answer Because of deffered execution, the results of the query aren't… May 12, 2026 at 3:57 pm

Related Questions

Hi, I have a web site that contains Master Pages as follows: ApplicationFolder Root.Master
I have a wizard style interface where I need to collect data from users.
I've written a Windows Forms application to solve Shikaku puzzles. At the moment, the
I use ASP.net Ajax on my project. and using Session for state management. in

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.