daily pastebin goal
77%
SHARE
TWEET

site.master

a guest Aug 5th, 2016 67 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.master.cs" Inherits="ABU.RetailLabel_MatrixCreator.SiteMaster" %>
  2.  
  3. <!DOCTYPE html>
  4. <html lang="en">
  5. <head runat="server">
  6.     <meta charset="utf-8" />
  7.     <title><%: Page.Title %> - My ASP.NET Application</title>
  8.     <link href="~/Content/Site.css" rel="stylesheet" />
  9.     <link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
  10.     <asp:PlaceHolder runat="server">        
  11.         <script src="<%: ResolveUrl("~/Scripts/modernizr-2.6.2.js") %>"></script>
  12.     </asp:PlaceHolder>
  13.     <meta name="viewport" content="width=device-width" />
  14.     <asp:ContentPlaceHolder runat="server" ID="HeadContent" />
  15. </head>
  16. <body>
  17.     <form runat="server">
  18.     <asp:ScriptManager runat="server">
  19.         <Scripts>
  20.             <asp:ScriptReference Name="jquery" />
  21.             <asp:ScriptReference Name="jquery.ui.combined" />
  22.         </Scripts>
  23.     </asp:ScriptManager>
  24.     <%--<header>
  25.         <div class="content-wrapper">
  26.             <div class="float-left">
  27.                 <p class="site-title"><a runat="server" href="~/">your logo here</a></p>
  28.             </div>
  29.             <div class="float-right">
  30.                 <section id="login">
  31.                     <asp:LoginView runat="server" ViewStateMode="Disabled">
  32.                         <AnonymousTemplate>
  33.                             <ul>
  34.                                 <li><a id="registerLink" runat="server" href="~/Account/Register">Register</a></li>
  35.                                 <li><a id="loginLink" runat="server" href="~/Account/Login">Log in</a></li>
  36.                             </ul>
  37.                         </AnonymousTemplate>
  38.                         <LoggedInTemplate>
  39.                             <p>
  40.                                 Hello, <a runat="server" class="username" href="~/Account/Manage" title="Manage your account">
  41.                                     <asp:LoginName runat="server" CssClass="username" />
  42.                                 </a>!
  43.                                 <asp:LoginStatus runat="server" LogoutAction="Redirect" LogoutText="Log off" LogoutPageUrl="~/" />
  44.                             </p>
  45.                         </LoggedInTemplate>
  46.                     </asp:LoginView>
  47.                 </section>
  48.                 <nav>
  49.                     <ul id="menu">
  50.                         <li><a runat="server" href="~/">Home</a></li>
  51.                         <li><a runat="server" href="~/About">About</a></li>
  52.                         <li><a runat="server" href="~/Contact">Contact</a></li>
  53.                     </ul>
  54.                 </nav>
  55.             </div>
  56.         </div>
  57.     </header>--%>
  58.     <div id="body">
  59. <%--        <asp:ContentPlaceHolder runat="server" ID="FeaturedContent" />--%>
  60.        <%-- <section class="content-wrapper main-content clear-fix">--%>
  61.             <asp:ContentPlaceHolder runat="server" ID="MainContent" />
  62.         <%--</section>--%>
  63.     </div>
  64.     <footer>
  65.         <div class="content-wrapper">
  66.             <div class="float-left">
  67.                 <p>&copy; <%: DateTime.Now.Year %> - My ASP.NET Application</p>
  68.             </div>
  69.         </div>
  70.     </footer>
  71.     </form>
  72. </body>
  73. </html>
RAW Paste Data
Top