Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1499 styling filter and bubblechart, filter bugfixes

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