Bookmark a location

Discussion in 'HTML & Website Design' started by Arcos, Sep 28, 2006.

  1. #1
    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?
     
    Arcos, Sep 28, 2006 IP
  2. chankit

    chankit Peon

    Messages:
    25
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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):
     
    chankit, Sep 28, 2006 IP
  3. Arcos

    Arcos Peon

    Messages:
    474
    Likes Received:
    13
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Chankit
    That is perfect
    Thank you
     
    Arcos, Sep 28, 2006 IP