Mike Cole
Mike Cole

Reputation: 14713

Making browser vertical scrollbar return to top in ASP.NET code

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.

Upvotes: 0

Views: 841

Answers (1)

MyItchyChin
MyItchyChin

Reputation: 14031

This will do it in JavaScript.

<a href="#" onclick="javascript:scroll(0,0);">Top</a>

Upvotes: 1

Related Questions