devxlogo

Preserve Browser Scroll Position After a Postback

For large web pages, you often want to maintain the user’s current scroll position after a postback. To do that, use one of the following methods:

  • In Web.config, in the section, add the Boolean attribute maintainScrollPositionOnPostBack="true". This will maintain the scroll positions for all the web site pages.
  • In the page declaration, add <%@ Page MaintainScrollPositionOnPostback="true" %>. Doing so maintains the scroll position for that page only.
  • From code behind, you can include System.Web.UI.Page.MaintainScrollPositionOnPostBack = true;. That’s the equivalent of using the page declaration (it maintains the scroll position for only the altered page).

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  How Seasoned Architects Evaluate New Tech

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.