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.