While handling postback if we have pages with large data it should scrolls. So when doing that postback occurs and the position where last scroll is done gets lost by the browser.
So for doing that we can use the page property which can make the things easier to handle it from their side
After writing the below line into our code the browser will handle the scroll from its end:
Page.MaintainScrollPositionOnPostBack = true;
This piece of code is browser dependent may work on one browser and not on others.
0 Comment(s)