Sunday, December 22, 2013

ASP.NET Tutorial 8- Create a Login website-Creating Master Page and appl...

7:41 AM






MasterPage Source Code


<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" 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 runat="server">
<title></title>
<asp:ContentPlaceHolder id="head" runat="server">
</asp:ContentPlaceHolder>
</head>
<body>
<form id="form1" runat="server">

<table style="font-family:Arial">
<tr>
<td colspan="2" style="width:800px; height:80px; background-color:#3399FF;
text-align:center">
<h1>
WebSite Header
</h1>
</td>
</tr>
<tr>
<td style="height:500px; background-color:#66FFFF; width:150px">
<h3>Menu</h3>
</td>
<td style="height:500px; background-color:#9999FF; width:650px">
<h3>content</h3>
<div>
<asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">

</asp:ContentPlaceHolder>
</div>
</td>
</tr>
<tr>
<td colspan="2" style="background-color:#3399FF; text-align:center">
<b>Website Footer</b>
</td>
</tr>
</table>


</form>
</body>
</html>


Written by

We are one of the initiators of the development of information technology in understanding the need for a solution that is familiar and close to us.

0 comments:

Post a Comment

 

© 2013 Klick Dev. All rights resevered.

Back To Top