protected void ButtonDoi_Click(object sender, EventArgs e)
        {
            String    sql   = string.Format("Select * from NguoiDung where TaiKhoan ='{0}'", Session["ten"]);
            DataTable table = DungChung.XemQuery(sql);
            string    sqlmatkhau;
            String    matkhaucu = table.Rows[0]["matkhau"].ToString();

            if (TextBoxCu.Text != null && TextBoxMoi.Text != null && TextBoxNhapLai.Text != null)
            {
                if (TextBoxCu.Text == matkhaucu)
                {
                    if (TextBoxMoi.Text == TextBoxNhapLai.Text)
                    {
                        sqlmatkhau = String.Format("Update NguoiDung Set MatKhau = '{0}' where TaiKhoan = '{1}'", TextBoxMoi.Text, Session["ten"].ToString());
                        DungChung.ThemSuaXoaQuery(sqlmatkhau);
                        LabelBaoLoi.Visible = false;
                        Response.Write("<script>alert('Đổi thành công')</script>");
                    }
                    else
                    {
                        LabelBaoLoi.Text = "Mật khẩu mới và nhập lại mật khẩu không khớp";
                    }
                }
                else
                {
                    LabelBaoLoi.Text = "Mật khẩu cũ không đúng";
                }
            }
        }
Example #2
0
        protected void ButtonDoi_Click(object sender, EventArgs e)
        {
            String sql = String.Format("Update NguoiDung set TenNguoiDung = '{0}', Email = '{1}', DiaChi = '{2}' Where TaiKhoan = '{3}'", TextBoxTen.Text, TextBoxEmail.Text, TextBoxDiaChi.Text, Session["ten"].ToString());

            DungChung.ThemSuaXoaQuery(sql);
            Response.Write("<script>alert('Đổi thành công')</script>");
        }