Find a UnorderedList <UL> control inside a master page from a content page in asp.net
Asked Answered
K

2

6

Hai guys,

I want to find a UL control and then find a LI within that UL and assign a css class to that from a content page....

<ul id="mainMenu" runat="server" style="width:350px;">
            <li id="mainHome" runat="server"><a title="Home" href="#" class="home">Home</a></li>
            <li id="mainManage" runat="server"><a title="Manage" href="#" class="manage">Manage</a></li>
            <li id="mainEnquiry" runat="server"><a title="Enquiry" href="#" class="enquiry">Enquiry</a></li>
            <li id="mainReport" runat="server"><a title="Report" href="#" class="report">Reports</a></li>

            </ul>

If the user clicks home it is redirected to users.aspx page and i want to highlight Home LI with a color... Plz give me suggestion...

Karlis answered 19/11, 2009 at 10:56 Comment(0)
N
7

If I have understood this correctly...

If your list is on the master page...

<ul runat="server" id="list">
    <li runat="server" id="home">Home</li>
    <li runat="server" id="news">News</li>
</ul>

...then you can do this on your content page...

Control list = this.Page.Master.FindControl("list");

Then the li objects will be controls in the list object - e.g. list.Controls. Or you can do...

Control home = this.Page.Master.FindControl("list").FindControl("home");

...to find specific controls of the list control.

When using the runat="server" on the HTML controls the server side equivalent object will be HtmlGenericControl.

If you want to apply a class to the LI tags what you would have to do is cast the LI object to a HtmlGenericControl and then use the Attributes property. For example...

HtmlGenericControl home = (HtmlGenericControl)this.Page.Master.FindControl("list").FindControl("home");

home.Attributes["class"] = "className";

Hope that helps...

Negris answered 19/11, 2009 at 11:6 Comment(4)
I found the UL id but i cant find LI id which is homeKarlis
To find the LI you will have to do this.Page.Master.FindControl("list").FindControl("home");Negris
chalkey that did the trick but i cant apply css to that LI ... How can apply cssKarlis
@Pandiya - I have updated my example again! You will be able to add a CSS class in the code behind by following my example.Negris
H
2

Give this a spin and let me know if it works.

In CSS, create two classes called something like:

.normalLink
{
background-color:#fff;
}

.selectedLink
{
background-color:#555;
}

In your links:

<li id="mainHome" runat="server"><a title="Home" href="users.aspx" class="<%= SetSelectedLink("users.aspx") %>">Home</a>
<li id="mainManage" runat="server"><a title="Manage" href="#" class="<%= SetSelectedLink("manage.aspx") %>">Manage</a></li>

In your code behind page:

If you are using a master page, do this next bit in the master code behind, otherwise you can paste it into every regular aspx code behindthat needs it

public string SetSelectedLink(string linkURL)
{
 if(Request.Url.ToLower().Contains(linkURL.ToLower())))
 {
    return "selectedLink";
 }
 else
 {
   return "normalLink";
 }
}

Edit: This only works if you replace your href # with proper urls!

Heshum answered 19/11, 2009 at 12:15 Comment(2)
Hai adrianos i want to use css for that <li id="mainHome" runat="server">Karlis
you want to call SetSelectedLink on your <li> element instead of your <a> element? then move it into the <li> elementHeshum

© 2022 - 2024 — McMap. All rights reserved.