Mega Code Archive

 
Categories / ASP.Net Tutorial / Page Lifecycle
 

Master page

<%@ Page MasterPageFile="Default.master" %> <asp:Content id="myContent" runat="server"     ContentPlaceHolderID="FrontPageContent">     Welcome to our web site! We hope you'll enjoy your visit. </asp:Content> File: Default.master <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">  <html>   <head>     <title>Front Page</title>   </head>   <body>     <form id="myForm" runat="server">       <h1>Welcome to SuperSite Inc!</h1>       <asp:ContentPlaceHolder id="FrontPageContent"           runat="server" />       <pre>Copyright 2006</pre>     </form>   </body> </html>