Line | |
---|
1 | <%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
|
---|
2 |
|
---|
3 | <ul>
|
---|
4 | <li <% if(Session["SelectedSubMenu"] == "Filter") {%> class="selected" <%}%>>
|
---|
5 | <%: Html.ActionLink( "Filter", "Index", "Filter") %>
|
---|
6 | </li>
|
---|
7 | <li <% if(Session["SelectedSubMenu"] == "Results") {%> class="selected" <%}%>>
|
---|
8 | <%: Html.ActionLink("Tabular View", "Results", "Query") %>
|
---|
9 | </li>
|
---|
10 | <% if (Session["QueryRunDetailId"] != null) { %>
|
---|
11 | <li <% if(Session["SelectedSubMenu"] == "Details") {%> class="selected" <%}%>>
|
---|
12 | <%: Html.ActionLink("Details", "Details", "Query")%>
|
---|
13 | </li>
|
---|
14 | <% } %>
|
---|
15 | <li <% if(Session["SelectedSubMenu"] == "Chart") {%> class="selected" <%}%>>
|
---|
16 | <%: Html.ActionLink("Chart", "Index", "Chart") %>
|
---|
17 | </li>
|
---|
18 |
|
---|
19 | </ul> |
---|
Note: See
TracBrowser
for help on using the repository browser.