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