Dynamically Change class Attribute From ASP.NET
I recently received a question from another programmer I know who’s been using PHP prior to ASP.NET that made me think harder about a problem we’ve all had in ASP.NET. The basic problem is this:
How do you dynamically change the class of a hyperlink based on the page name so that the hyperlink that represents the current page is styled differently than all of the other hyperlinks on our screen? If you want you can substitute any other HTML element you want, but the problem remains the same.
The first, most obvious answer would be to create a case statement of some sort.
string fileName = AppRelativeVirtualPath .ToLower().Replace("~/","").Replace("/","_") .Replace(".aspx",""); switch(fileName) { case "fileone": m_hyperLinkFileOne.CssClass = "selectedClass"; break; // etc... }
But we all know just how ugly that code will get once we start adding pages to our site. Yuck! Unfortunately, this is exactly the code I’ve been recommending up until today.
What was I thinking?!
If you are familiar with ASP.NET at all, you should already be familiar with the Page_Load event handler. I bet that’s where you do 90% of your page initialization. But did you know that there is a load event that fires for each control?
Further, you can have all of your controls point to the same load event handler. So if we take advantage of this, we can write very tight code that automatically sets the class based on the current page name.
// This code assumes that the ID of the hyperLink // controls follow // the form of m_hyperLinkDestinationPageName // ie, a link to default.aspx would become // m_hyperLinkDefault void HyperLinkLoad(Object sender, EventArgs args) { // Only need to do this once if you have ViewState // enabled. if(!IsPostBack) { string fileName = AppRelativeVirtualPath .ToLower().Replace("~/","").Replace("/","_") .Replace(".aspx",""); // sender will always point to the control that // fired the event so, assuming that only // asp:hyperlink controls call HyperLinkLoad if("m_hyperlink"+file == ((HyperLinkControl)sender) .ID.ToLower()) ((HyperLinkControl)sender).CssClass= "selectedClass"; } }
Other Related Items:
Active Server Pages (ASP)/Visual Basic (VB).NET - Instructor-based Video Training BundleInteractive Instructor-Based Active Server Pages (ASP)/Visual Basic (VB).NET Bundle Video Training Course on DVD-ROM. Computer Based Training (CBT) a... Read More >
Ballet Class for BeginnersAn introduction to ballet dancing for the beginner student.No Track Information Available
Media Type: DVD
Artist: BALLET CLASS FOR BEGINNERS
Title: BALLET CLASS FOR BEGINNERS
Street Release Date: 08/31/2004
Dance Class Toddler/Little Kid T300 Vinyl Flexible TapEconomical tap shoes have arrived! The Vinyl Flexible Tap shoe from Dance provides a flexible manmade upper that ties at the arch securely with a removable gross grain ribbon. In case you want a different closure, elastic and botton closures are also included with the shoe.










Have you given any thoughts to Use Categories to Add Functionality to Classes? I’ve been hard pressed to find good resources, and judging from this article I’m guessing you may have something valuable to say. Thanks in advance!
Can you point me to any resource that talks about this? I’m not familiar with anything that could be what you reference in your question.