SHARE
TWEET
site.master
a guest
Aug 5th, 2016
67
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- <%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.master.cs" Inherits="ABU.RetailLabel_MatrixCreator.SiteMaster" %>
- <!DOCTYPE html>
- <html lang="en">
- <head runat="server">
- <meta charset="utf-8" />
- <title><%: Page.Title %> - My ASP.NET Application</title>
- <link href="~/Content/Site.css" rel="stylesheet" />
- <link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
- <asp:PlaceHolder runat="server">
- <script src="<%: ResolveUrl("~/Scripts/modernizr-2.6.2.js") %>"></script>
- </asp:PlaceHolder>
- <meta name="viewport" content="width=device-width" />
- <asp:ContentPlaceHolder runat="server" ID="HeadContent" />
- </head>
- <body>
- <form runat="server">
- <asp:ScriptManager runat="server">
- <Scripts>
- <asp:ScriptReference Name="jquery" />
- <asp:ScriptReference Name="jquery.ui.combined" />
- </Scripts>
- </asp:ScriptManager>
- <%--<header>
- <div class="content-wrapper">
- <div class="float-left">
- <p class="site-title"><a runat="server" href="~/">your logo here</a></p>
- </div>
- <div class="float-right">
- <section id="login">
- <asp:LoginView runat="server" ViewStateMode="Disabled">
- <AnonymousTemplate>
- <ul>
- <li><a id="registerLink" runat="server" href="~/Account/Register">Register</a></li>
- <li><a id="loginLink" runat="server" href="~/Account/Login">Log in</a></li>
- </ul>
- </AnonymousTemplate>
- <LoggedInTemplate>
- <p>
- Hello, <a runat="server" class="username" href="~/Account/Manage" title="Manage your account">
- <asp:LoginName runat="server" CssClass="username" />
- </a>!
- <asp:LoginStatus runat="server" LogoutAction="Redirect" LogoutText="Log off" LogoutPageUrl="~/" />
- </p>
- </LoggedInTemplate>
- </asp:LoginView>
- </section>
- <nav>
- <ul id="menu">
- <li><a runat="server" href="~/">Home</a></li>
- <li><a runat="server" href="~/About">About</a></li>
- <li><a runat="server" href="~/Contact">Contact</a></li>
- </ul>
- </nav>
- </div>
- </div>
- </header>--%>
- <div id="body">
- <%-- <asp:ContentPlaceHolder runat="server" ID="FeaturedContent" />--%>
- <%-- <section class="content-wrapper main-content clear-fix">--%>
- <asp:ContentPlaceHolder runat="server" ID="MainContent" />
- <%--</section>--%>
- </div>
- <footer>
- <div class="content-wrapper">
- <div class="float-left">
- <p>© <%: DateTime.Now.Year %> - My ASP.NET Application</p>
- </div>
- </div>
- </footer>
- </form>
- </body>
- </html>
RAW Paste Data
