Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 6076 was 5910, checked in by cfleisch, 14 years ago

#1439 Query tool as plugin implemented, added submenu items

File size: 379 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", "Filter", "Query") %>
6</li>
7<li <% if(Session["SelectedSubMenu"] == "Results") {%> class="selected" <%}%>>
8    <%: Html.ActionLink("Results", "Results", "Query") %>
9</li>
10
11</ul>
Note: See TracBrowser for help on using the repository browser.