-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfrm_Signup1.aspx
More file actions
101 lines (82 loc) · 3.39 KB
/
frm_Signup1.aspx
File metadata and controls
101 lines (82 loc) · 3.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="frm_Signup1.aspx.cs" Inherits="ASP_ALL_In_1.frm_Signup1" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Signup</title>
<style>
body{
background-color:azure;
}
#Panel1{
background-color:green;
}
#Label1{
font-size:22px;
color:blanchedalmond;
text-align:center;
height:35px;
}
#Panel2{
margin-left:350px;
}
.label{
font-size:22px;
color:green;
font-weight:bold;
}
#btnSubmit{
width:150px;
height:35px;
background-color:green;
color:white;
font-size:22px;
}
tr{
line-height:30px;
}
.WebUserControl1{
margin-top:550px;
text-align:center;
}
table{
margin-left:350px;
}
.auto-style1 {
width: 248px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<table >
<caption><h3 style="text-align:center;color:green;">Registration - Form</h3> </caption>
<tr><td class="label">UserName :</td>
<td class="auto-style1"><asp:TextBox ID="txtUserName" runat="server" Height="35px" Width="300px" /></td>
</tr>
<tr><td class="label">Email :</td>
<td class="auto-style1"><asp:TextBox ID="txtEmail" runat="server" Height="35px" Width="300px" /></td>
</tr>
<tr><td class="label">Password :</td>
<td class="auto-style1"><asp:TextBox ID="txtPassword" runat="server" Height="35px" Width="300px" /></td>
</tr>
<tr><td class="label">Re-Type Password :</td>
<td class="auto-style1"><asp:TextBox ID="txtRePassword" runat="server" Height="35px" Width="300px" /></td>
</tr>
<tr><td class="label">Enter Date of Birth :</td>
<td class="auto-style1">
<asp:DropDownList ID="ddlDay" runat="server" AutoPostBack="True" Height="40px" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged" Width="73px">
</asp:DropDownList> <asp:DropDownList ID="ddlMonth" runat="server" AutoPostBack="True" Height="40px" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged" Width="73px">
</asp:DropDownList> <asp:DropDownList ID="ddlYear" runat="server" AutoPostBack="True" Height="40px" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged" Width="73px">
</asp:DropDownList></td>
</tr>
<tr><td></td></tr>
<tr><td></td></tr>
<tr align="center">
<td colspan="2"><asp:Button ID="btnSubmit" Text="Register Me" runat="server" OnClick="btnSubmit_Click" /></td>
</tr>
</table>
</div>
</form>
</body>
</html>