Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 6246 was 6246, checked in by wtollsch, 13 years ago

#1433 AlgorithmClass, Algorithm, ProblemClass, Problem create/update appropriate controller/models/views, File upload (Algorithm / Problem)

File size: 716 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", "AlgorithmClassPlgin")%>
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.