- Timestamp:
- 05/27/11 19:09:49 (14 years ago)
- Location:
- branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/Shared
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/Shared/Error.aspx
r4985 r6317 2 2 3 3 <asp:Content ID="errorTitle" ContentPlaceHolderID="TitleContent" runat="server"> 4 4 Error 5 5 </asp:Content> 6 7 6 <asp:Content ID="errorContent" ContentPlaceHolderID="MainContent" runat="server"> 8 9 10 7 <h2> 8 Sorry, an error occurred while processing your request. 9 </h2> 11 10 </asp:Content> -
branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/Shared/LogOnUserControl.ascx
r4985 r6317 1 1 <%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %> 2 2 <% 3 3 if (Request.IsAuthenticated) { 4 4 %> 5 Welcome <b><%: Page.User.Identity.Name %></b>! 6 [ <%: Html.ActionLink("Log Off", "LogOff", "Account") %> ] 5 Welcome <b> 6 <%: Page.User.Identity.Name %></b>! [ 7 <%: Html.ActionLink("Log Off", "LogOff", "Account") %> 8 ] 7 9 <% 8 } 9 else { 10 %> 11 [ <%: Html.ActionLink("Log On", "LogOn", "Account") %> ] 10 } else { 11 %> 12 [ 13 <%: Html.ActionLink("Log On", "LogOn", "Account") %> 14 ] 12 15 <% 13 16 } 14 17 %> -
branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/Shared/Site.Master
r6290 r6317 28 28 </div> 29 29 </div> 30 31 30 <div id="main"> 32 33 <asp:ContentPlaceHolder ID="SubMenuContent" runat="server" />34 </div>31 <div id="master-submenu"> 32 <asp:ContentPlaceHolder ID="SubMenuContent" runat="server" /> 33 </div> 35 34 <asp:ContentPlaceHolder ID="MainContent" runat="server" /> 36 35 <div id="footer">
Note: See TracChangeset
for help on using the changeset viewer.