On an aspx page I have following hyperlink:
<asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl="#Bottom" CssClass="ToBottom">To Bottom ↓</asp:HyperLink>
I would like to use it to navigate to the bottom of the page, more specificly, to an anchor with the name “Bottom”:
<anchor name="Bottom" />
This doesn’t work however… Any suggestions on how to make “To Bottom” and “To Upper” hyperlinks to quickly scroll through the page? Thanks.
**UPDATE:
A regular
<a href="#Bottom" class="ToBottom">To Bottom ↓</a>
Doesn’t work either.
This ought to do the trick: