Skip to content

Instantly share code, notes, and snippets.

@thomascristanis
Last active August 29, 2015 14:16
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 thomascristanis/be8ada8544ff0cefeee3 to your computer and use it in GitHub Desktop.
Save thomascristanis/be8ada8544ff0cefeee3 to your computer and use it in GitHub Desktop.
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="SUAMASTERPAGE.master.cs" Inherits="SUAMASTERPAGE" %>
<!DOCTYPE html>
<html lang="en-US">
<head runat="server">
<title></title>
<asp:ContentPlaceHolder ID="Head" runat="server">
</asp:ContentPlaceHolder>
</head>
<body>
<form id="frmPrincipal" runat="server">
<div id="conteudo" class="central">
<asp:ContentPlaceHolder ID="ConteudoCentral" runat="server" />
</div>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment