Doing Postback but returning to same position on Form

asp.net

Solution

I think you need MaintainScrollPositionOnPostback

  <%@ Page MaintainScrollPositionOnPostback="true" %> 

If you want it throughout website

use Web.config page section <pages maintainScrollPositionOnPostBack="true" />

Problem

Possible Duplicate: Keep page position on postback How do you return to the same position on a form after doing a postback?

Original source

Related problems