Asp
Masterpages/MasterPage.master
<body>
<form id="form1" runat="server">
<div id="PageWrapper">
<div id="Header"><a class="HeaderLink" href="~/" runat="server"></a></div>
<div id="MenuWrapper">
<asp:Menu ID="Menu1" runat="server" CssClass="MainMenu"
DataSourceID="SiteMapDataSource1" Orientation="Horizontal"
StaticEnableDefaultPopOutImage="False">
<StaticSelectedStyle CssClass="StaticSelectedStyle" />
<StaticMenuItemStyle CssClass="StaticMenuItemStyle" />
<DynamicHoverStyle CssClass="DynamicHoverStyle" />
<DynamicMenuItemStyle CssClass="DynamicMenuItemStyle" />
<StaticHoverStyle CssClass="StaticHoverStyle" />
</asp:Menu>
<asp:TreeView ID="TreeView1" runat="server" DataSourceID="SiteMapDataSource1"
ShowExpandCollapse="False">
</asp:TreeView>
<asp:SiteMapDataSource ID="SiteMapDataSource1" runat="server"
ShowStartingNode="False" />
</div>
<div id="MainContent">
<asp:SiteMapPath ID="SiteMapPath1" runat="server"></asp:SiteMapPath><br /><br />
<asp:ContentPlaceHolder ID="cpMainContent" runat="server">
</asp:ContentPlaceHolder>
</div>
<div id="Sidebar">
Select a Theme <asp:DropDownList ID="lstPreferredTheme" runat="server"
AutoPostBack="True">
<asp:ListItem>Monochrome</asp:ListItem>
<asp:ListItem>DarkGrey</asp:ListItem>
</asp:DropDownList>
</div>
<div id="Footer">Footer Goes Here</div>
</div>
</form>
</body>
Default.aspx
<asp:Content ID="Content2" ContentPlaceHolderID="cpMainContent" Runat="Server">
<h1>Hi there visitor and welcome to Planet Wrox</h1>
<p class="Introduction">
We&#39;re glad you are paying a visit to <a href="http://www.PlanetWrox.com">
www.PlanetWrox.com</a>, the coolest music community site on the Internet.
</p>
<p class="Introduction">
Feel free to have a <a href="Default.aspx">look around</a>; as there are lots of
interesting <b>reviews and concert pictures</b> to be found here.
</p>
<p>
You can <a href="Login.aspx">log in</a> here
</p>
</asp:Content>

More Related Content

TXT
History frame
PPTX
Website Series 2 - HTML
ZIP
引き出しとしてのDjango - SoozyCon7
RTF
Documento
PPTX
Dive into AngularJS Routing
PDF
Angular JS Routing
PDF
Rails course day 4
TXT
Trabajo
History frame
Website Series 2 - HTML
引き出しとしてのDjango - SoozyCon7
Documento
Dive into AngularJS Routing
Angular JS Routing
Rails course day 4
Trabajo

What's hot (19)

PDF
Jqeury ajax plugins
PPTX
Going with style: Themes and apps for Magento Go
PPTX
PDF
Short intro to JQuery and Modernizr
PPTX
UI-Router
PPTX
Organize your Django templates
PDF
Flask 소수전공 강의자료 - 2차시
PDF
Django Girls Mbale [victor's sessions]
PDF
Engines: Team Development on Rails (2005)
PPT
Web&java. jsp
PDF
Utilization of zend an ultimate alternate for intense data processing
TXT
New text document
PPTX
Magento Dependency Injection
DOCX
How routing works in angular js
PDF
Codeigniter : Custom Routing - Manipulate Uri
PDF
前后端mvc经验 - webrebuild 2011 session
PDF
Code igniter parameter passing techniques
PPTX
Dundee University HackU 2013 - Mojito
KEY
Settings API - Oslo WordPress Meetup - November 22, 2011
Jqeury ajax plugins
Going with style: Themes and apps for Magento Go
Short intro to JQuery and Modernizr
UI-Router
Organize your Django templates
Flask 소수전공 강의자료 - 2차시
Django Girls Mbale [victor's sessions]
Engines: Team Development on Rails (2005)
Web&java. jsp
Utilization of zend an ultimate alternate for intense data processing
New text document
Magento Dependency Injection
How routing works in angular js
Codeigniter : Custom Routing - Manipulate Uri
前后端mvc经验 - webrebuild 2011 session
Code igniter parameter passing techniques
Dundee University HackU 2013 - Mojito
Settings API - Oslo WordPress Meetup - November 22, 2011
Ad

Viewers also liked (12)

DOCX
Informe de series
PPT
البحث عبر الإنترنت الجزء الأول
PPTX
Presentación1
PDF
GERENCIA DE PROYECTO
DOCX
Mapa mental
PDF
Test pres
DOCX
Developing a plan for conducting site visits
DOCX
La evolución del html
PDF
Test pres doc
PDF
Fotografia
DOCX
Dia 5 TDS 2013 14
ODS
Factura proforma
Informe de series
البحث عبر الإنترنت الجزء الأول
Presentación1
GERENCIA DE PROYECTO
Mapa mental
Test pres
Developing a plan for conducting site visits
La evolución del html
Test pres doc
Fotografia
Dia 5 TDS 2013 14
Factura proforma
Ad

Asp

  • 2. Masterpages/MasterPage.master <body> <form id="form1" runat="server"> <div id="PageWrapper"> <div id="Header"><a class="HeaderLink" href="~/" runat="server"></a></div> <div id="MenuWrapper"> <asp:Menu ID="Menu1" runat="server" CssClass="MainMenu" DataSourceID="SiteMapDataSource1" Orientation="Horizontal" StaticEnableDefaultPopOutImage="False"> <StaticSelectedStyle CssClass="StaticSelectedStyle" /> <StaticMenuItemStyle CssClass="StaticMenuItemStyle" /> <DynamicHoverStyle CssClass="DynamicHoverStyle" /> <DynamicMenuItemStyle CssClass="DynamicMenuItemStyle" /> <StaticHoverStyle CssClass="StaticHoverStyle" /> </asp:Menu> <asp:TreeView ID="TreeView1" runat="server" DataSourceID="SiteMapDataSource1" ShowExpandCollapse="False"> </asp:TreeView> <asp:SiteMapDataSource ID="SiteMapDataSource1" runat="server" ShowStartingNode="False" /> </div> <div id="MainContent"> <asp:SiteMapPath ID="SiteMapPath1" runat="server"></asp:SiteMapPath><br /><br /> <asp:ContentPlaceHolder ID="cpMainContent" runat="server"> </asp:ContentPlaceHolder> </div> <div id="Sidebar"> Select a Theme <asp:DropDownList ID="lstPreferredTheme" runat="server" AutoPostBack="True"> <asp:ListItem>Monochrome</asp:ListItem> <asp:ListItem>DarkGrey</asp:ListItem> </asp:DropDownList> </div> <div id="Footer">Footer Goes Here</div> </div> </form> </body> Default.aspx <asp:Content ID="Content2" ContentPlaceHolderID="cpMainContent" Runat="Server"> <h1>Hi there visitor and welcome to Planet Wrox</h1> <p class="Introduction"> We&#39;re glad you are paying a visit to <a href="http://www.PlanetWrox.com"> www.PlanetWrox.com</a>, the coolest music community site on the Internet. </p> <p class="Introduction"> Feel free to have a <a href="Default.aspx">look around</a>; as there are lots of interesting <b>reviews and concert pictures</b> to be found here. </p> <p> You can <a href="Login.aspx">log in</a> here </p> </asp:Content>