how to maintain the scroll position in post back
how to maintain the scroll position on the button click
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Niranjan PoddarPosted Aug 7, 2014, 3:02 AM
You have to write this code into page load event........
protected void Page_Load(object sender, EventArgs e)
{
MaintainScrollPositionOnPostBack = false;
}
thanks
Ankur JainPosted Aug 7, 2014, 12:51 AM
To maintain the scroll position for the large web page you can use on of these methods :
1- use Web.config page section <pages maintainScrollPositionOnPostBack="true" />
: this will maintains the scroll positions for all the web site pages.
2- in the page declaration <%@ Page MaintainScrollPositionOnPostback="true" %> : this will maintains the scroll position for this page only.
3- programmatically from code behind System.Web.UI.Page.MaintainScrollPositionOnPostBack = true; : this will maintains the scroll position for this page only (the same as page declration).
if its useful,please don't forget to mark it as answer