Creating link to different part of ASPX page.

  • Thread starter Thread starter Ram
  • Start date Start date
R

Ram

I have an ASPX page which is pretty lengthy. User wants to have link on the
top of the page so that when they click on that link it will take them
directly to that part of the page.
Is it possible to do that ?
Please suggest.
Ram
 
This is even standard HTML functionality:

<H1>Table of Contents</H1>
<P><A href="#section1">Introduction</A><BR>
<A href="#section2">Some background</A><BR>
<A href="#section2.1">On a more personal note</A><BR>
....the rest of the table of contents...
....the document body...
<H2><A name="section1">Introduction</A></H2>
....section 1...
<H2><A name="section2">Some background</A></H2>
....section 2...
<H3><A name="section2.1">On a more personal note</A></H3>
....section 2.1...
Regards,-- Nico DebeuckelaereND-Sign BVBA (Microsoft Certified Partner since
2004)Pierstraat 135B-2840 RumstURL: http://www.nd-sign.com== ND-Sign,
Designed for you ==(This posting is provided "AS IS", with no warranties,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top