-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathuser.aspx.cs
34 lines (27 loc) · 885 Bytes
/
user.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class user : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (((ELearn.User)Session["user"]) == null)
{
Response.Redirect("/default.aspx");
}
if (!IsPostBack)
{
Name.Text = ((ELearn.User)Session["user"]).name;
Emailaddress.Text = ((ELearn.User)Session["user"]).mail;
Username.Text = ((ELearn.User)Session["user"]).username;
Password.Text = ((ELearn.User)Session["user"]).password;
}
}
protected void SaveClicked(object sender, EventArgs e)
{
((ELearn.User)Session["user"]).update(Name.Text, Username.Text, Emailaddress.Text, Password.Text);
}
}