Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 6271 was 6271, checked in by dkahn, 13 years ago

#1433 Fixed missing files and debugged and fixed a null pointer exception on AlgorithmClass.Description that was caused by invalid values coming from webservice

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