-
Notifications
You must be signed in to change notification settings - Fork 5
/
useracc.aspx
153 lines (151 loc) · 4.72 KB
/
useracc.aspx
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="useracc.aspx.cs" Inherits="useracc" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table style="width: 960px; height: 528px;" align="left">
<tr>
<td style="width: 496px" align="center">
ROLL NO</td>
<td align="left">
<asp:TextBox ID="TextBox1" runat="server" Width="230px"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 496px" align="center">
FIRST NAME</td>
<td align="left">
<asp:TextBox ID="TextBox2" runat="server" Width="230px"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 496px" align="center">
LAST NAME</td>
<td align="left">
<asp:TextBox ID="TextBox3" runat="server" Width="230px"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 496px" align="center">
COURSE ID</td>
<td align="left">
<asp:TextBox ID="TextBox4" runat="server" Width="230px"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 496px" align="center">
REFERENCE NO</td>
<td align="left">
<asp:TextBox ID="TextBox5" runat="server" Width="230px"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 496px" align="center">
ADDRESS 1</td>
<td align="left">
<asp:TextBox ID="TextBox6" runat="server" Width="230px"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 496px" align="center">
ADDRESS 2</td>
<td align="left">
<asp:TextBox ID="TextBox7" runat="server" Width="230px"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 496px" align="center">
ADDRESS 3</td>
<td align="left">
<asp:TextBox ID="TextBox11" runat="server" Width="230px"></asp:TextBox>
</td>
</tr>
<tr align="left">
<td style="width: 496px" align="center">
CITY</td>
<td align="left">
<asp:TextBox ID="TextBox8" runat="server" Width="230px"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 496px" align="center">
PIN</td>
<td align="left">
<asp:TextBox ID="TextBox12" runat="server" Width="230px"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 496px" align="center">
STATE</td>
<td align="left">
<asp:TextBox ID="TextBox13" runat="server" Width="230px"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 496px" align="center">
EMAIL ID</td>
<td align="left">
<asp:TextBox ID="TextBox9" runat="server" Width="230px"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 496px" align="center">
D.O.B.</td>
<td align="left">
<asp:TextBox ID="TextBox14" runat="server" Width="230px"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 496px" align="center">
FATHER NAME</td>
<td align="left">
<asp:TextBox ID="TextBox15" runat="server" Width="230px"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 496px" align="center">
MOTHER NAME</td>
<td align="left">
<asp:TextBox ID="TextBox16" runat="server" Width="230px"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 496px" align="center">
CATEGORY</td>
<td align="left">
<asp:TextBox ID="TextBox17" runat="server" Width="230px"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 496px" align="center">
GENDER</td>
<td align="left">
<asp:TextBox ID="TextBox18" runat="server" Width="230px"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 496px" align="center">
PHONE</td>
<td align="left">
<asp:TextBox ID="TextBox19" runat="server" Width="230px"></asp:TextBox>
</td>
</tr>
<tr>
<td style="width: 496px" align="center">
</td>
<td align="left">
</td>
</tr>
<tr>
<td style="width: 496px" align="center">
</td>
<td align="left">
<asp:Button ID="Button1" runat="server" Text="SUBMIT" Width="101px"
onclick="Button1_Click" />
</td>
</tr>
<tr>
<td style="width: 496px">
</td>
<td align="left">
</td>
</tr>
</table>
</asp:Content>