forked from desktop/highlighter-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Aspx.aspx
27 lines (24 loc) · 773 Bytes
/
Aspx.aspx
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
<%@ Page Title="About" Language="C#" MasterPageFile="~/Site.Master"
AutoEventWireup="true" CodeBehind="About.aspx.cs" Inherits="WebForm.About" %>
<asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="MainContent">
<hgroup class="title">
<h1><%: Page.Title %>.</h1>
<h2>Your quintessential app description page.</h2>
</hgroup>
<article>
<p>
Use this area to provide additional information.
</p>
</article>
<aside>
<h3>Aside Title</h3>
<p>
This is information about the title.
</p>
<ul>
<li><a runat="server" href="~/">Home</a></li>
<li><a runat="server" href="~/About.aspx">About</a></li>
<li><a runat="server" href="~/Contact.aspx">Contact</a></li>
</ul>
</aside>
</asp:Content>