-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.aspx
79 lines (67 loc) · 1.93 KB
/
profile.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
<%@ Page Title="" Language="C#" MasterPageFile="~/customerMasterPage.master" AutoEventWireup="true" CodeFile="profile.aspx.cs" Inherits="Default2" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table>
<tr>
<td>Username:</td>
<td>
<asp:Label ID="Label1" runat="server"></asp:Label></td>
</tr>
<tr>
<td>Image:</td>
<td><asp:Image ID="Image1" runat="server" width="50px" Height="50px"/></td>
</tr>
<tr>
<td>Profession:</td>
<td>
<asp:Label ID="Label3" runat="server" ></asp:Label>
</td>
</tr>
<tr>
<td>Work-Experience:</td>
<td>
<asp:Label ID="Label4" runat="server"></asp:Label></td>
</tr>
<tr>
<td>Category:</td>
<td>
<asp:Label ID="Label5" runat="server"></asp:Label></td>
</tr>
<tr>
<td>Course:</td>
<td>
<asp:Label ID="Label6" runat="server" ></asp:Label></td>
</tr>
<tr>
<td>State:</td>
<td>
<asp:Label ID="Label7" runat="server"></asp:Label></td>
</tr>
<tr>
<td>City:</td>
<td><asp:Label ID="Label8" runat="server"></asp:Label></td>
</tr>
<tr>
<td>Area:</td>
<td><asp:Label ID="Label9" runat="server"></asp:Label></td>
</tr>
<tr>
<td>Address</td>
<td> <asp:Label ID="Label10" runat="server"></asp:Label></td>
</tr>
<tr>
<td>Fee:</td>
<td> <asp:Label ID="Label11" runat="server"></asp:Label></td>
</tr>
<tr>
<td>Phone No:</td>
<td>
<asp:Label ID="Label12" runat="server" Text="Label"></asp:Label></td>
</tr>
<tr>
<td></td>
</tr>
</table>
<br />
</asp:Content>