I would like to maintain my scroll position when using:
Response.Redirect(Request.RawUrl)
The reason for this is because I have a button in my GridView that updates a value in the Grid. After clicking the button I want to update the value in the Gridview, which needs Response.Redirect(Request.RawUrl)
but I also want to maintain the scroll position.
This does not work either:
maintainScrollPositionOnPostback="true"
I have tried other Javacript methods and they do not work as well, since I am refreshing the page.
How would I do this?