- Timestamp:
- 05/24/11 23:33:38 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Views/Shared/Site.Master
r6253 r6273 7 7 <asp:ContentPlaceHolder ID="TitleContent" runat="server" /> 8 8 </title> 9 <script src="../../Content/jQuery/js/jquery-1.5.1.min.js" type="text/javascript"></script> 10 <script src="../../Content/jQuery/js/jquery-ui-1.8.12.custom.min.js" type="text/javascript"></script> 9 11 <link href="../../Content/themes/hl/Site.css" rel="stylesheet" type="text/css" /> 10 <!-- for ajax --> 11 <script src="<%= Url.Content("~/Scripts/MicrosoftAjax.debug.js") %>" type="text/javascript"></script> 12 <link href="../../Content/jQuery/css/ui-lightness/jquery-ui-1.8.12.custom.css" rel="stylesheet" 13 type="text/css" /> 14 <script src="../../Content/HLStyling.js" type="text/javascript"></script> 15 <!-- Microsoft Ajax --> 16 <script src="<%= Url.Content("~/Scripts/MicrosoftAjax.debug.js") %>" type="text/javascript"></script> 12 17 <script src="<%= Url.Content("~/Scripts/MicrosoftMvcAjax.debug.js") %>" type="text/javascript"></script> 13 14 18 </head> 15 19 <body> … … 40 44 <%}%>> 41 45 <%: Html.ActionLink("About", "About", "Home")%></li> 46 <li <% if(ViewContext.RouteData.Values["action"].ToString() == "Styling") {%> class="selected" 47 <%}%>> 48 <%: Html.ActionLink("Styling", "Index", "Styling")%></li> 42 49 </ul> 43 50 </div> 44 45 51 <div id="master-main"> 46 52 <div id="master-submenu"> 47 53 <asp:ContentPlaceHolder ID="SubMenuContent" runat="server" /> 48 54 </div> … … 58 64 </div> 59 65 </div> 60 <!--61 <div class="page">62 <div id="header">63 <div id="title">64 <h1>65 My MVC Application</h1>66 </div>67 <div id="logindisplay">68 <% Html.RenderPartial("LogOnUserControl"); %>69 </div>70 <div id="menucontainer">71 <ul id="menu">72 <li>73 <%: Html.ActionLink("Home", "Index", "Home")%></li>74 <li>75 <%: Html.ActionLink("About", "About", "Home")%></li>76 <% foreach (var pluginLink in77 HLWebPluginHost.PluginLib.PluginHelper.GetPluginActions()) { %>78 <li>79 <%: Html.ActionLink(pluginLink.Name,80 pluginLink.Action,81 pluginLink.Controller)%>82 </li>83 <% } %>84 </ul>85 </div>86 </div>87 <div id="main">88 <asp:ContentPlaceHolder ID="MainContent2" runat="server" />89 <div id="footer">90 </div>91 </div>92 </div>93 -->94 66 </body> 95 67 </html>
Note: See TracChangeset
for help on using the changeset viewer.