2009-07-08 7 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.

Antwort

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

Wenn Sie eine ASP.NET-y-Lösung wünschen, geben Sie einen Code ein, der zeigt, wie Ihre Navigationsleiste aussieht. – JoshJordan

1

yes, you can do this with CSS

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

CSS sollte wirklich damit umgehen, weil es ein Navigationsstilproblem ist.

viel Glück.

+0

Es funktioniert, wenn Sie nur die aktuelle Seite anzeigen möchten, aber wie wird CSS den Link deaktivieren/das href-Attribut entfernen? Das muss anders gemacht werden, wie JS oder C#. –

Verwandte Themen