2009-07-08 6 views
2

I am developing a navigation bar for the top of a website. One of the interesting things I noticed about the sites original was that when you had navigated to a location, the link would no longer be a lnk. The prior developer achived this with a lot of code and variables floating around, I am just wondering if there is a much simpler way to do this in .net or css. So if a link has been visited i.e. you clicked the link and have been taken to the target page, the link is no longer a link, you can't click it, no mouse change etc..net C# <a href> links, killing link when in correct location

Thanks, R.

Répondre

0

There are plenty of ways to do this - the simplest I can think of is to have a little chunk of Javascript that searches the entire navbar for links to the current page and strips out the anchor tags.

+0

Si vous voulez une solution plus ASP.NET-y, postez du code montrant à quoi ressemble votre barre de navigation. – JoshJordan

1

yes, you can do this with CSS

http://www.ewebarchitecture.com/tip.php?id=356

CSS devrait vraiment gérer cela parce que c'est un problème de style de navigation.

bonne chance.

+0

Cela fonctionne quand vous voulez juste montrer la page actuelle, mais comment CSS désactiver le lien/supprimer l'attribut href? Cela doit être fait d'une autre manière, comme JS ou C#. –