Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 12467 was 6317, checked in by jwolfing, 14 years ago

#1433 code formatted

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