Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Views/Query/Menu.ascx @ 10785

Last change on this file since 10785 was 6318, checked in by cfleisch, 14 years ago

#1499 styling filter and bubblechart, filter bugfixes

File size: 729 bytes
RevLine 
[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.