-
Notifications
You must be signed in to change notification settings - Fork 0
/
About.aspx.cs
59 lines (57 loc) · 1.8 KB
/
About.aspx.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.Security;
public partial class About : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
query.Visible = false;
signup.Visible = false;
dropdown.Visible = false;
news.Visible = false;
if (!IsPostBack)
{
if (Session["user_name"] != null)
{
label1.Text = "Welcome , " + (string)Session["user_name"];
Boolean admin = (Boolean)Session["admin"];
login.Visible = false;
dropdown.Visible = true;
if (admin == true)
{
news.Visible = true;
query.Visible = true;
signup.Visible = true;
}
}
}
}
protected void dropdown_SelectedIndexChanged(object sender, EventArgs e)
{
DropDownList list = (DropDownList)sender;
string value = (string)list.SelectedValue;
if (value.Equals("Logout"))
{
//Session.Clear();
//Response.Cache.SetCacheability(HttpCacheability.NoCache);
Session.Abandon();
/*FormsAuthentication.SignOut();
Response.Cache.SetExpires(DateTime.UtcNow.AddMinutes(-1));
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetNoStore();*/
Response.Redirect("Home.aspx");
}
if (value.Equals("Personal Information"))
{
Response.Redirect("myaccount.aspx");
}
if (value.Equals("Change Password"))
{
Response.Redirect("changepassword.aspx");
}
}
}