Click here to Skip to main content
Licence CPOL
First Posted 13 May 2009
Views 8,678
Downloads 77
Bookmarked 4 times

Changing currently selected hyperlink's color

By | 13 May 2009 | Article
Changing the currently selected hyperlink's color

Introduction

Playing with hyperlinks on a master page is not easy. Sometimes, you would like to change the colour of your links (i.e., the current page to have a different colour) using the session object. This tutorial shows you how to do this using C#. So, let's get it on the go.

Using the code

I am using Visual Studio 2008 on my machine. Now this also applies to VWD 2005, 2008 and VS 2005. First, create a new website and delete the default.aspx page created by Visual studio. Now, create a master page.

Add the following hyperlinks to the master page in design view:

  • Link 1
  • Link 2
  • Link 3

Now, we need to add code to our master page so that each time the link is selected, the colour changes. We need to check which link is selected and handle that with some code.

Now, let's look at the C# code:

if(!ispostback){if(Session["Clicked"]=="link1")
{lnk1.Style.Add("color", "#009900")}; if(Session["Clicked"]=="link2")
{lnk2.Style.Add("color", "#009900")}; if(Session["Clicked"]=="link3")
{lnk3.Style.Add("color", "#009900")};}

That is it. We can change the colour of the selected hyperlink using the master page. Now on each page, we need to change the Session["Clicked"] in the form_load method, like this:

if(!ispostback)
{
    Session["Clicked"]="link1";
}

The above code will change on each page.

Points of interest

You can use C# to do some markup.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Seabata

Software Developer (Junior)
3Fifteen
South Africa South Africa

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalsecond hyperlink color PinmemberSPdo2:39 27 Jul '10  
General[My vote of 1] Improper use of session. Pinmemberkanu@adatapost17:16 13 May '09  
GeneralRe: [My vote of 1] Improper use of session. PinmemberSeabata19:52 13 May '09  
GeneralRe: [My vote of 1] Improper use of session. PinmemberRonald Bosma21:05 13 May '09  
GeneralRe: [My vote of 1] Improper use of session. PinmemberSmirkinGherkin21:18 13 May '09  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 13 May 2009
Article Copyright 2009 by Seabata
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid