Does anybody know how to make the vertical scrollbar the browser window return to the top in code? Either javascript or code-behind would be fine.
+1
A:
This will do it in JavaScript.
<a href="#" onclick="javascript:scroll(0,0);">Top</a>
CptSkippy
2009-07-30 16:27:46
Why the downvote? Is this not a good method?
Mike C.
2009-07-30 17:26:11
This method works fine in IE 6/7/8, Safari 3.0, Chrome and FireFox 3.0
CptSkippy
2009-07-30 18:13:00
A:
I ran across this article that may help you. Resetting Scroll Position When Using MaintainScrollPositionOnPostback
tessa
2009-07-30 16:38:03