Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/Admin/Menu.ascx @ 11799

Last change on this file since 11799 was 6317, checked in by jwolfing, 13 years ago

#1433 code formatted

File size: 879 bytes
Line 
1<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
2<ul>
3  <li <% if(Session["SelectedSubMenu"] == "Platform") {%> class="selected" <%}%>>
4    <%: Html.ActionLink("Platform", "Index", "Platform")%>
5  </li>
6  <li <% if(Session["SelectedSubMenu"] == "AlgorithmClass") {%> class="selected" <%}%>>
7    <%: Html.ActionLink("AlgorithmClass", "Index", "AlgorithmClass")%>
8  </li>
9  <li <% if(Session["SelectedSubMenu"] == "Algorithm") {%> class="selected" <%}%>>
10    <%: Html.ActionLink("Algorithm", "Index", "Algorithm")%>
11  </li>
12  <li <% if(Session["SelectedSubMenu"] == "ProblemClass") {%> class="selected" <%}%>>
13    <%: Html.ActionLink("ProblemClass", "Index", "ProblemClass")%>
14  </li>
15  <li <% if(Session["SelectedSubMenu"] == "Problem") {%> class="selected" <%}%>>
16    <%: Html.ActionLink("Problem", "Index", "Problem") %>
17  </li>
18</ul>
Note: See TracBrowser for help on using the repository browser.