Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Views/Shared/Site.Master @ 5756

Last change on this file since 5756 was 5756, checked in by cfleisch, 13 years ago

Test Query Plugin added #1439

File size: 1.2 KB
Line 
1<%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPage" %>
2
3<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4<html xmlns="http://www.w3.org/1999/xhtml">
5<head runat="server">
6    <title><asp:ContentPlaceHolder ID="TitleContent" runat="server" /></title>
7    <link href="../../Content/Site.css" rel="stylesheet" type="text/css" />
8</head>
9
10<body>
11    <div class="page">
12
13        <div id="header">
14            <div id="title">
15                <h1>My MVC Application</h1>
16            </div>
17             
18            <div id="logindisplay">
19                <% Html.RenderPartial("LogOnUserControl"); %>
20            </div>
21           
22            <div id="menucontainer">
23           
24                <ul id="menu">             
25                    <li><%: Html.ActionLink("Home", "Index", "Home")%></li>
26                    <li><%: Html.ActionLink("About", "About", "Home")%></li>
27                </ul>
28           
29            </div>
30        </div>
31
32        <div id="main">
33            <asp:ContentPlaceHolder ID="MainContent" runat="server" />
34
35            <div id="footer">
36            </div>
37        </div>
38    </div>
39</body>
40</html>
Note: See TracBrowser for help on using the repository browser.