views:

19

answers:

2

I am writing a help page with sections - What I want to do is allow navigation to a particular section (depending on what page they clicked help from) rather always landing at the top of the page.

My web app is written in ASP.NET, Can anyone point me in the direction of how to set this up? Thanks!

+1  A: 

You need to use the <a name="xxx"> tag.

Dean Harding
+1  A: 

You should use "bookmarks" for this... for example:

<a href="yourpage.aspx#Help">Help</a>

Will take you to the following "bookmark" on the yourpage.aspx page...

<a name="Help"></a>
Sohnee