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

大城市里の小女人 提交于 2019-11-29 07:16:34

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...

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!

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!