When working with multiple forms in one page, sometimes you want to stay in the current position after submitting the form. To do this you have options;
- MaintainScrollPositionOnPostback set to true – you can set this in web.config to make all pages behave as you want it or you can plug it in the page level.
- You can use a javascript
<script type="text/javascript"> window.scrollTo = function( x,y ) { return true; } </script>