-
Notifications
You must be signed in to change notification settings - Fork 0
/
Thongtinkhachhang.aspx.cs
150 lines (123 loc) · 4.6 KB
/
Thongtinkhachhang.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
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
using oragnic.Cms;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Xml.Serialization;
namespace oragnic
{
public partial class Thongtinkhachhang1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if ((bool)Session["login"] == true)
{
xinchao.InnerText = "Xin Chào " + Session["Name"];
thongtin_email.InnerText = "Email: " + Session["email"];
thongtin_sdt.InnerText = "Số Điện Thoại: " + Session["sdt"];
thongtin_add.InnerText = "Địa Chỉ: " + Session["add"];
}
else { Response.Redirect("Login.aspx"); }
}
protected void Dangxuat(object sender, EventArgs e) {
Session.Abandon();
Response.Redirect("Login.aspx");
}
// hiện display đổi tên
protected void addkh(object sender, EventArgs e)
{
thongtin_khachhang_thaydoi.Style["display"] = "block";
thongtin_khachhang_thaydoipass.Style["display"] = "none";
}
// hiện display đổi pass
protected void addpass(object sender, EventArgs e)
{
thongtin_khachhang_thaydoi.Style["display"] = "none";
thongtin_khachhang_thaydoipass.Style["display"] = "block";
}
// đổi tên
protected void change_name(object sender, EventArgs e)
{
string path = Server.MapPath("~/App_Data/user.xml");
List<User> list = XMLcode.getListMember(path);
string email = (string)Session["email"];
String namenew = Request.Form["namenew"];
String addnew = Request.Form["addnew"];
bool test = false;
if(namenew != "" && addnew != "")
{
foreach(User u in list)
{
if(u.Email == email)
{
u.Name = namenew;
u.Add = addnew;
XmlSerializer writer = new XmlSerializer(typeof(List<User>));
FileStream _file = File.Create(path);
writer.Serialize(_file, list);
_file.Close();
// cập nhat sesion
Session["name"] = namenew;
Session["add"] = addnew;
test = true;
}
}
}
else
{
Response.Write("<script> alert('Không để trống nội dung.'); </script>");
}
if(test == true)
{
Response.Write("<script> alert('Thành Công.'); </script>");
Response.Redirect(Request.Url.AbsoluteUri);
}
else
{
Response.Write("<script> alert('Không Thành Công.'); </script>");
}
}
// đổi pass
protected void change_pass(object sender, EventArgs e)
{
string path = Server.MapPath("~/App_Data/user.xml");
List<User> list = XMLcode.getListMember(path);
string email = (string)Session["email"];
String passold = Request.Form["passold"];
String passnew = Request.Form["passnew"];
bool test = false;
if (passold != "" && passnew != "")
{
foreach (User u in list)
{
if (u.Email == email && u.Password == passold)
{
u.Password = passnew;
XmlSerializer writer = new XmlSerializer(typeof(List<User>));
FileStream _file = File.Create(path);
writer.Serialize(_file, list);
_file.Close();
// cập nhat sesion
test = true;
}
}
}
else
{
Response.Write("<script> alert('Không để trống nội dung.'); </script>");
}
if (test == true)
{
Response.Write("<script> alert('Thành Công.'); </script>");
Response.Redirect(Request.Url.AbsoluteUri);
}
else
{
Response.Write("<script> alert('Không Thành Công.'); </script>");
}
}
}
}