set up link to go to spot on the same page

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi I am trying to set up links that will simply go to a section of a page. I would like a setup like thi

go to a (click here to go to a
go to b (click here to go to b

''''''''''''''''''''''''''''
'''''''''''''''''''''''''''

'''''''''''''''''''''''
'''''''''''''''''''''

thanks Paul.
 
Paul,
First you need to mark the sections of the page that you would like to
navigate to:

***************
************
<a name="a"></a>
*************
*************
<a name="b"></a>
************

Then you include the hyperlinks on the page:
<a href="pagename.aspx#a>Click here for section a</a>
<a href="pagename.aspx#b>Click here for section b</a>
 
Jay
thanks for the response. I will give it a try. I noticed that in vs.net it specifies that you can select format and then select set book mark, for setting up an anchor hyperlink after you have selected some text. I tried using a label and selecting the text on the label but the set bookmark option is not allowed. Just wondering if you know the best control from the toolbar to use when just entering text on a webform? I am using a webform as help information and trying to set up anchor hyperlinks
Paul.
 
Back
Top