I want to add a link at the top of a page when clicked will take the user to the bottom of the page for additional information. Database driven website in .asp Cannot use normal 'Bookmark' techniques as the page is generated. Can anyone help?
Why can't you use bookmark? It works with dynamically generated page, too. Put this at the top of a page <a href="#bottom">See Footnote</a> Code (markup): And this at the bottom of the page, right before your footnote <a name="bottom"></a> Foot note here... Code (markup):