vote up 3 vote down star
4

I am writing a website with Visual Studio 2008 and ASP.NET 3.5. I have a masterpage set up to simplify the layout and to keep the content pages for content rather than content and layout.

The navigation is list, css'd so it looks like a bar. In order to highlight the page on the bar, the list item needs to look like this <li id="current">. I do not want to use <asp:ContentPlaceHolder> if I can avoid it. Is there some code I can add to each of my pages (or just to the masterpage?) to accomplish this or am I stuck using <asp:ContentPlaceHolder>'s?

flag

78% accept rate

6 Answers

vote up 4 vote down check

Add a property to your master page called Page Section

public string PageSection { get; set; }

Add a MasterType page directive to the top of your content pages

<%@ MasterType VirtualPath="~/foo.master" %>

In your content page code behind, set the PageSection property of the master page

Master.PageSection = "home";

In your master page, make the body tag a server tag

<body ID="bodyTag" runat="server">

In the master page code behind, use that property to set a class on the body tag

bodyTag.Attributes.Add("class", this.PageSection);

Give each of your nav items a unique ID attribute.

In your css, change the display of the nav items based on the current page class

.home #homeNavItem,
.contact #contactNavItem
{ 
    color: #f00; 
}
link|flag
I am using VB.NET as the backend rather than C#, and to be honest I know little about C#. when making the property, what do I need to put anything within get...end get // set...end set to make it work properly? – Anders Oct 9 '08 at 16:59
oh, i already have the css set. all that needs to change to make the link selected is having the id="current" in the list item tag. – Anders Oct 9 '08 at 17:03
Then in your master page code behind, add the 'current' attribute on the list item based on the page section. – John Sheehan Oct 9 '08 at 17:04
For the VB property, you just need a simple string property. I don't know the syntax off hand. The C# syntax I used is C# 3.0's new automatic properties. – John Sheehan Oct 9 '08 at 17:05
I must be doing something wrong, I cannot get the property to show up on my content pages. Master.PageSection does not work, nor does Me.PageSection. Property is declared as "Public Shared Property PageSection() As String" – Anders Oct 9 '08 at 17:07
show 3 more comments
vote up 0 vote down

Using the PageSection Property in the Master page submitted by John Sheehan works very well for me. Thank you so much for the solution!

link|flag
vote up 2 vote down

Have you considered using a Web.sitemap file? It makes it real easy. If your sitemap file looks like this...

<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
  <siteMapNode>
    <siteMapNode url="~/Default.aspx" title="Home"  description="" />
    <siteMapNode url="~/Blog.aspx" title="Blog"  description="" />
    <siteMapNode url="~/AboutUs.aspx" title="AboutUs"  description="" />
  </siteMapNode>
</siteMap>

...then you can do this in your master page to achieve the results you want:

<asp:SiteMapDataSource ID="sitemapdata" runat="server" ShowStartingNode="false"  />
<ul id="navigation">
    <asp:Repeater runat="server" ID="navrepeater" DataSourceID="sitemapdata">
        <ItemTemplate>
            <li class="<%# SiteMap.CurrentNode.Equals(Container.DataItem) ? "activenav" : "inactivenav" %>"><a href="<%# DataBinder.Eval(Container.DataItem, "url") %>"><%# DataBinder.Eval(Container.DataItem, "title") %></a></li>
        </ItemTemplate>
    </asp:Repeater>
</ul>

The current page's LI will have a class of "activenav" (or whatever you decide to use), and the others will have a class of "inactivenav". You can write your CSS accordingly. This is the technique I use on my site and it works great.

link|flag
This is the best route to go, in my humble opinion. – alex Jan 19 at 15:45
vote up 2 vote down

It's a better semantic match and likely an easier variable to set to keep the navigation using the same classes or ids everywhere and only alter the body element's id to match:

<li id="homeNav">home</li>
<li id="blogNav">blog</li>

and then on each page...

<body id="home">
<body id="blog">

And in the css:

#home #homeNav {background-image:url(homeNav-on.jpg);}
#blog #blogNav {background-image:url(blogNav-on.jpg);}
link|flag
vote up -1 vote down

I would use javascript to accomplish this. In css, change your #current to be a class (.current) and then have id's on each of your ListItems that you create. Then using RegisterStartupScript, call a javascript method that gets the appropriate ListItem and assigns it a style of current. Using Prototype, this would look like $('MyPageLi').className = 'current'.

link|flag
so basically have each item have unique classes (i suppose i could name them like <li class="nav_faq"> for instance) and then when i nav to a different page call javascript to change the "nav_faq" to current? – Anders Oct 9 '08 at 16:51
No, give them each unique IDs, and a common class. Then you can use javascript to get all elements with that class and make sure none of them have the current class, then get the single element with the particular id for the current page and add the current class to it. – Joel Coehoorn Oct 9 '08 at 19:12
vote up 0 vote down

The use or non use of ContentPlaceHolder will not affect which element has the id="current" set on it.

You will have to look at some method, either in your codebehind for the master page, a javascript function or something else when rendering the menu component to properly add the id="current" to the list when it is created.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.