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

答えて

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

さらにASP.NET-yソリューションが必要な場合は、ナビゲーションバーの外観を示すコードを投稿してください。 – JoshJordan

1

yes, you can do this with CSS

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

ナビゲーションスタイルの問題であるため、CSSが実際に処理する必要があります。

幸運。

+0

現在のページを表示したいだけで、CSSがリンクを無効にする/ href属性を削除する方法はありますか?それは、JSやC#のような他の方法で行われなければなりません。 –

関連する問題