21 lines
590 B
Plaintext
21 lines
590 B
Plaintext
|
<%@ Master Language="C#" CodeBehind="main.aspx.cs" Inherits="masterpage.main" %>
|
||
|
|
||
|
<!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>
|
||
|
</head>
|
||
|
<body>
|
||
|
<form id="form1" runat="server" style="outline: solid 1px blue">
|
||
|
<br/>
|
||
|
<h1>Welcome! please enter your information</h1>
|
||
|
<div>
|
||
|
<asp:ContentPlaceHolder id="pc1" runat="server">
|
||
|
|
||
|
</asp:ContentPlaceHolder>
|
||
|
</div>
|
||
|
<br/>
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|