vote up 0 vote down star

Hey everyone,

As the title suggests i've run into a problem with anchors ASP.NET.

I've set them up the same way as you would in standard html

ex:

<a href="#Intro">Introduction</a>
and then further down the page, 
<a name="Intro" ...

for some reason when i click the link, the #Intro isnt appended to the url, and i'm not taking to the anchor.

However, if i manually add the #Intro to the url it works.

Also, if i change the #Intro to a name which has no corresponding anchor with the given name attribute it IS appended to the query

What's going on?

flag
Do you have any onclick event handlers on these links? I can't recreate this problem. – Josh Stodola May 5 at 19:28

3 Answers

vote up 0 vote down

You have it around the wrong way. It should be NAME="INTRO" where you want the intro and HREF="#INTRO" when you want to go back to the intro.

link|flag
1  
That's what he has I think. – d03boy May 5 at 19:45
vote up 0 vote down

This seems more like a browser issue or else you're not including enough code.

The code you showed us looks fine.

link|flag
vote up -1 vote down

Try dropping the quotes in the name tag and/or adding the page name to the anchor link.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.