Reset scroll position after Async postback - ASP.NET Reset scroll position after Async postback - ASP.NET asp.net asp.net

Reset scroll position after Async postback - ASP.NET


As you're using UpdatePanels you're going to need to hook into the ASP.NET AJAX PageRequestManager

You'll need to add a method to the endRequest event hooks that are:

Raised after an asynchronous postback is finished and control has been returned to the browser.

So you'd have something like:

<script type="text/javascript">  Sys.WebForms.PageRequestManager.getInstance().add_endRequest(pageLoaded);  function pageLoaded(sender, args) {     window.scrollTo(0,0);  }</script>

Which will force the browser to scroll back to the top of the page once an update request has completed.

There are other events you could hook into instead of course:

beginRequest // Raised before the request is sentinitializeRequest // Raised as the request is initialised (good for cancelling)pageLoaded // Raised once the request has returned, and content is loadedpageLoading // Raised once the request has returned, and before content is loaded

The beauty of asynchronous post-backs is that the page will maintain the scroll height without you having to set MaintainScrollPosition, as there is no "full page reload" happening, in this case you actually want that effect to happen, so you will need to manually create it.

Edit to respond to updated question

Ok, so if you need to only reset the postion on certain button presses you'll need to do something like this:

Start by hooking into the BeginRequest instead/as well:

Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(BeginRequestHandler);

This is because in the args parameter you get access to:

args.get_postBackElement().id

Which will tell you the id of the button that started the whole event - you can then either check the value here, and move the page, or store it in a variable, and query it in the end request - being aware of race conditions, etc where the user clicks another button before your original update completes.

That should get you going with any luck - there's quite a few examples around this on Working with PageRequestManager Events


Here is the perfect solution to reset scroll bar position to TOP in AJAX

Client Side Code

function ResetScrollPosition(){    setTimeout("window.scrollTo(0,0)", 0);}

Server Side Code

ScriptManager.RegisterStartupScript(Page, this.GetType(), "ScrollPage", "ResetScrollPosition();", true);

Only,window.scrollTo(0,0) will not work. Ajax will take precedence in this case so you have to use setTimeout function with that.


Here is the following solution I developed based on this source

ASP.NET Webform

<script language="javascript" type="text/javascript">   function SetScrollEvent() {      window.scrollTo(0,0);   }</script> <asp:GridView id="MyGridView" runat="server" OnRowDataBound="MyGridView_OnRowDataBound">    <Columns>        <asp:CommandField ButtonType="Link" ShowEditButton="true" />    </Columns></asp:GridView>

ASP.NET Webform code behind

protected void MyGridView_OnRowDataBound(object sender, GridViewRowEventArgs e){    if(e.Row.RowType.Equals(DataControlRowType.DataRow))    {        foreach (DataControlFieldCell cell in e.Row.Cells)        {            foreach(Control control in cell.Controls)            {                LinkButton lb = control as LinkButton;                if (lb != null && lb.CommandName == "Edit")                    lb.Attributes.Add("onclick", "SetScrollEvent();");            }        }    }}