Torna al Thread
<%@ Master Language="VB" CodeFile="MasterPage.master.vb" Inherits="MasterPage" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title></title>
<asp:ContentPlaceHolder ID="head" runat="server">
</asp:ContentPlaceHolder>
<style type="text/css">
html, body
{
margin: 0px;
padding: 0px;
}
body
{
line-height: 1.5em;
}
#header
{
height: 110px;
margin-bottom: 5px;
margin-top: 20px;
}
#menuAsp
{
top: 50px;
position: relative;
float: right;
}
#container
{
width: 900px;
margin: 0 auto;
}
#top
{
padding-top: 5px;
padding-bottom: 5px;
margin-bottom: 20px;
height: 10px;
}
/* CONTENT */
#content
{
padding: 10px;
float: left;
width: 580px;
margin-bottom: 20px;
}
#navigation
{
padding: 10px 10px 20px 10px;
float: right;
width: 260px;
}
#extra
{
margin: 20px 0px 10px 0px;
padding: 10px 10px 20px 10px;
float: right;
width: 260px;
clear: right;
}
#footer
{
margin: 20px 0px 0px 0px;
clear: both;
width: 100%;
text-align: center;
padding-top: 10px;
}
</style>
</head>
<body id="body" runat="server">
<form id="form1" runat="server">
<div id="container">
<div id="header">
<a href="#" name="logo">
<asp:Image ID="logo" ImageUrl="#" runat="server" />
</a>
<div id="menuAsp">
MENU
</div>
</div>
<div id="top">
</div>
<div id="content">
<asp:ContentPlaceHolder ID="ContentPlaceHolderContent" runat="server">
</asp:ContentPlaceHolder>
</div>
<div id="navigation">
<asp:ContentPlaceHolder ID="ContentPlaceHolderNavigation" runat="server">
</asp:ContentPlaceHolder>
</div>
<div id="extra">
<asp:ContentPlaceHolder ID="ContentPlaceHolderExtra" runat="server">
</asp:ContentPlaceHolder>
</div>
<div id="footer">
</div>
</div>
</form>
</body>
</html>