forked from autofac/Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSite.Master
More file actions
42 lines (35 loc) · 1.24 KB
/
Site.Master
File metadata and controls
42 lines (35 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.master.cs" Inherits="WebFormsExample.SiteMaster" %>
<!DOCTYPE html>
<html lang="en">
<head runat="server">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Autofac Web Forms Demo" />
<title><%: Page.Title %> - Autofac Web Forms Demo</title>
<webopt:bundlereference runat="server" path="~/Content/css" />
</head>
<body>
<div class="page">
<div id="header">
<div id="title">
<h1>Autofac Web Forms Example</h1>
</div>
<div id="logindisplay">
</div>
<div id="menucontainer">
<ul id="menu">
<li><asp:HyperLink Text="Home" NavigateUrl="~/Default.aspx" runat="server" /></li>
<li><asp:HyperLink Text="About" NavigateUrl="~/About.aspx" runat="server" /></li>
</ul>
</div>
</div>
<div id="main">
<asp:ContentPlaceHolder ID="MainContent" runat="server">
</asp:ContentPlaceHolder>
<div id="footer">
</div>
</div>
</div>
</body>
</html>