-
Notifications
You must be signed in to change notification settings - Fork 0
/
UserProfile.aspx
163 lines (154 loc) · 8.11 KB
/
UserProfile.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
153
154
155
156
157
158
159
160
161
162
163
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="UserProfile.aspx.cs" Inherits="UserProfile" %>
<%@ Register src="Header.ascx" tagname="Header" tagprefix="uc1" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>SSIT College Forum - Profile Update</title>
<link href="artifacts/ClgStyleClasses.css" rel="stylesheet" />
<style type="text/css">
.auto-style3 {
width: 180px;
text-align: right;
}
.auto-style4 {
text-align: right;
}
.auto-style5 {
text-align: left;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<table class="tblPage" align="center">
<tr>
<td class="tdPage1" align="left" style="border-bottom-width:thin; border-bottom-style:groove;border-bottom-color:#808080">
<uc1:Header ID="Header1" runat="server" />
</td>
</tr>
<tr>
<td class="tdPage2">
<table style="height:100%">
<tr>
<td >
<table style="font-family: 'Courier New', Courier, monospace; font-size: small">
<tr>
<td class="auto-style3" rowspan="2">Profile picture: </td>
<td class="auto-style6"> </td>
<td class="auto-style6">
<asp:Image ID="Image1" runat="server" Height="150px" />
</td>
</tr>
<tr>
<td class="auto-style6"> </td>
<td class="auto-style5">
<asp:FileUpload ID="picUpdate" runat="server" Width="86px" />
<asp:Button ID="btnUpld" runat="server" Text="Upload" OnClick="btnUpld_Click" />
</td>
</tr>
<tr>
<td class="auto-style3">Display name: </td>
<td> </td>
<td>
<asp:TextBox ID="TxtDpName" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td class="auto-style3">USN:</td>
<td> </td>
<td>
<asp:Label ID="LabelProfUSN" runat="server" Text="Label"></asp:Label>
</td>
</tr>
<tr>
<td class="auto-style3">Branch:</td>
<td> </td>
<td>
<asp:TextBox ID="TxtProfBranch" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td class="auto-style3"> Section:</td>
<td> </td>
<td>
<asp:TextBox ID="TxtProfSec" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td class="auto-style3">Address:</td>
<td> </td>
<td>
<asp:TextBox ID="TxtProfAddr" runat="server" TextMode="MultiLine"></asp:TextBox>
</td>
</tr>
<tr>
<td class="auto-style3">Mobile:</td>
<td> </td>
<td>
<asp:TextBox ID="TxtProfMob" runat="server" ></asp:TextBox>
</td>
</tr>
<tr >
<td style="border: thin groove #000000;" class="auto-style2">Choose your Likes</td>
<td > </td>
<td style="border: thin groove #000000;">
<asp:TextBox ID="txtTag1" runat="server" Width="98%"></asp:TextBox>
<asp:TextBox ID="txtTag2" runat="server" Width="98%"></asp:TextBox>
<asp:TextBox ID="txtTag3" runat="server" Width="98%"></asp:TextBox>
<asp:TextBox ID="txtTag4" runat="server" Width="98%"></asp:TextBox>
<asp:TextBox ID="txtTag5" runat="server" Width="98%"></asp:TextBox>
</td>
<td class="auto-style4">
</td>
</tr>
<tr>
<td class="auto-style3">About yourself: </td>
<td> </td>
<td>
<asp:TextBox ID="TxtProfAbt" runat="server" TextMode="MultiLine"> </asp:TextBox>
</td>
</tr>
<tr>
<td class="auto-style3">Email-id</td>
<td class="auto-style4"></td>
<td >
<asp:TextBox ID="TxtProfEmail" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td class="auto-style3">Password</td>
<td> </td>
<td>
<asp:TextBox ID="TxtProfPwd" TextMode="Password" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td class="auto-style3">Date-of-birth</td>
<td> </td>
<td>
<asp:Calendar ID="Calendar1" runat="server"></asp:Calendar>
</td>
</tr>
<tr>
<td class="auto-style3">
<asp:Button ID="btnUpdate" runat="server" Text="Update" OnClick="btnSave_Click" />
</td>
<td> </td>
<td>
<asp:Button ID="btnCancel" runat="server" Text="Cancel" OnClick="btnCancel_Click" />
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="tdPage3">
</td>
</tr>
</table>
</form>
</body>
</html>