-
Notifications
You must be signed in to change notification settings - Fork 0
/
MasterPage.master
82 lines (73 loc) · 2.65 KB
/
MasterPage.master
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
<%@ Master Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
protected void Page_PreRender(object sender, EventArgs e)
{
try
{
User u = UserDAL.GetUserDetails(Session["userid"].ToString());
userPhoto.ImageUrl = "~/photos/" + u.PictureFile + ".jpg";
// get details of the user
lblFollowersCount.Text = u.FollowersCount.ToString();
lblFriendsCount.Text = u.FriendsCount.ToString();
lblUpdatesCount.Text = u.UpdatesCount.ToString();
}
catch (Exception ex)
{
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
</head>
<body>
<form id="form1" runat="server">
<table width="800px" height="600px" align="center" bgcolor="white">
<tr>
<td colspan="2">
<img src="images/logo.jpg" />
</td>
</tr>
<tr>
<td colspan="2" align="right" style="background-color:skyblue">
<a href="default.aspx">Home</a>
<a href="findpeople.aspx">Find People</a>
<a href="profile.aspx">Profile</a>
<a href="changepassword.aspx">Password</a>
<asp:LoginStatus ID="LoginStatus1" runat="server" />
</td>
</tr>
<tr>
<td valign="top">
<asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</td>
<td valign="top" width="150px" style="background-color:beige" align="center">
<asp:Image runat="server" ID="userPhoto" Width="150px" Height = "150px"/>
<br />
<h4><asp:LoginName ID="LoginName1" runat="server" /> </h4>
<p />
<table>
<tr>
<td><a href="friends.aspx">Following</a> </td>
<td><a href="followers.aspx">Followers</a> </td>
<td><a href="updates.aspx">Updates</a> </td>
</tr>
<td><asp:Label ID="lblFriendsCount" runat="server"></asp:Label></td>
<td><asp:Label ID="lblFollowersCount" runat="server"></asp:Label></td>
<td><asp:Label ID="lblUpdatesCount" runat="server"></asp:Label></td>
</table>
<br />
<br />
<p />
<img src="images/followme.jpg" width="200px"/>
</td>
</tr>
<tr>
<td colspan="2" style="background-color:gray;color:white;font-weight:bold;text-align:center">All right reserved. © Srikanth Technologies</td>
</td>
</tr>
</table>
</form>
</body>
</html>