Skip to content

Instantly share code, notes, and snippets.

@possan
Created October 20, 2010 09:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save possan/636111 to your computer and use it in GitHub Desktop.
Save possan/636111 to your computer and use it in GitHub Desktop.
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="...." Inherits="...." %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<asp:ContentPlaceHolder ID="HeadContent" runat="server" />
<asp:Literal ID="liHeaders" runat="server" EnableViewState="false" />
</head>
<body class="standard yui-skin-sam">
<asp:Literal ID="liTop" runat="server" EnableViewState="false" />
<form runat="server">
<asp:ContentPlaceHolder ID="MainContent" runat="server" />
</form>
<asp:Literal ID="liBottom" runat="server" EnableViewState="false" />
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment