Moondoggie
Moondoggie

Reputation: 61

Stopping AutoPostBack from going back to the top of the page

So like the title states I want to stop AutoPostBack from sending the user back to the top of the page. I want to know if it's possible.

By the way: I know about AJAX's UpdatePanel, but that's too troublesome. I'd like to keep things simple.

Upvotes: 0

Views: 703

Answers (2)

user10043313
user10043313

Reputation:

we can use this MaintainScrollPositionOnPostback="true" on your page directive as below

and the second if this dosn't work code in code behind me.

Page.SmartNavigation = true;

in page load

and i anodher solution is Use an UpdatePanel control to asynchronously update parts of a page

Upvotes: 0

शेखर
शेखर

Reputation: 17614

You can use this MaintainScrollPositionOnPostback="true" on your page directive as below

<%@ Page MaintainScrollPositionOnPostback="true" ... %>

Upvotes: 1

Related Questions