Changeset 6312 for branches/WebApplication
- Timestamp:
- 05/27/11 18:27:37 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Views/Shared/Site.Master
r6289 r6312 34 34 <%}%>> 35 35 <%: Html.ActionLink("Home", "Index", "Home")%></li> 36 <% if (Request.IsAuthenticated) {%> 36 37 <% foreach (var pluginLink in 37 38 HLWebPluginHost.PluginLib.PluginHelper.GetPluginActions()) { %> 38 39 <li <% if(ViewContext.RouteData.Values["controller"].ToString() == pluginLink.Controller) {%> 39 40 class="selected" <%}%>> 40 <%: Html.ActionLink(pluginLink.Name, 41 pluginLink.Action, 41 <%: Html.ActionLink(pluginLink.Name, 42 pluginLink.Action, 42 43 pluginLink.Controller)%> 43 44 </li> 44 <% } %> 45 <% } 46 }%> 45 47 <li <% if(ViewContext.RouteData.Values["action"].ToString() == "About") {%> class="selected" 46 48 <%}%>>
Note: See TracChangeset
for help on using the changeset viewer.