Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 6274 was 6253, checked in by msammer, 14 years ago

#1520 Added the Run-detail-view which shows the properties and the values of a run. Property-values are shown in a AJAX-based extra view

File size: 724 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("Results", "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.