protected void btnReset_ServerClick(object sender, EventArgs e) { NguoiDung nd = new NguoiDung(); nd.UpdateFields(id, txtHoVaTen.Value, txtTaiKhoan.Value, "12345", (DateTime) wdcNgaySinh.Value, rbtNam.Checked ? true : false, txtEmail.Value, null, chkKichHoat.Checked, txtDienThoaiDiDong.Value, txtDienThoaiCoDinh.Value, Convert.ToInt32(ddlLoaiNguoiDung.SelectedValue), null, null, null, null, txtYM.Value, null, null, null); hidmatkhau.Value = "12345"; SendMail("12345", "Đặt lại mật khẩu từ CHONET.VN", "Chúng tôi đã đặt lại mật khẩu cho bạn [[taikhoan]], mật khẩu mới là: [[password]]"); }
protected void btnLuu_ServerClick(object sender, EventArgs e) { try { NguoiDung nguoidung = new NguoiDung(); if (ACTION == "ADD") { if (nguoidung.CheckExistTenTruyCap(0, txtTaiKhoan.Value.Trim()) != true) { nguoidung.InsertFields(txtHoVaTen.Value, txtTaiKhoan.Value, txtMatKhau.Value, Convert.ToDateTime(wdcNgaySinh.Value), (rbtNam.Checked ? true : false), txtEmail.Value, null, chkKichHoat.Checked, txtDienThoaiDiDong.Value, txtDienThoaiCoDinh.Value, Convert.ToInt32(ddlLoaiNguoiDung.SelectedValue), null, txtYM.Value, null, 1, null, null, null, null); } else { lblTonTaiTenTruyCap.Text = "Tên truy cập đã tồn tại"; //ValidationSummary1.HeaderText = "Có lỗi xảy ra"; return; } } else if (ACTION == "EDIT") { if (nguoidung.CheckExistTenTruyCap(id, txtTaiKhoan.Value.Trim()) != true) { nguoidung.UpdateFields(id, txtHoVaTen.Value, txtTaiKhoan.Value, null, (DateTime) wdcNgaySinh.Value, rbtNam.Checked ? true : false, txtEmail.Value, null, chkKichHoat.Checked, txtDienThoaiDiDong.Value, txtDienThoaiCoDinh.Value, Convert.ToInt32(ddlLoaiNguoiDung.SelectedValue), null, txtYM.Value, null, null, null, null, null, null); //nguoidung.UpdateFields(id, txtHoVaTen.Value, null, txtMatKhau.Value, null, // null, txtEmail.Value, txtDienThoaiDiDong.Value, txtDienThoaiCoDinh.Value, // null, "", chkKichHoat.Checked, 1, "", 0, "", true); } else { lblTonTaiTenTruyCap.Text = "Tên truy cập đã tồn tại"; //ValidationSummary1.HeaderText = "Có lỗi xảy ra"; return; } } string strScript = "<script language='JavaScript'>" + "window.parent.Refresh();</script>"; ClientScript.RegisterStartupScript(Type.GetType("System.String"), "Refresh", strScript); } catch (Exception ex) { Response.Write(ex.ToString()); } }
protected void Page_Load(object sender, EventArgs e) { try { if ((Request.QueryString["ndid"] != null) && (Request.QueryString["activate"] != null)) { int ndid = int.Parse(Request.QueryString["ndid"]); NguoiDung nd = new NguoiDung(); DataSet ds = nd.SelectByID(ndid); if (ds.Tables[0].Rows.Count > 0) { string masokichhoat = ds.Tables[0].Rows[0]["MaSoKichHoat"].ToString(); bool blKichHoat = bool.Parse(ds.Tables[0].Rows[0]["KichHoat"].ToString()); if (Request.QueryString["activate"] == masokichhoat) { if (blKichHoat == false) { nd.UpdateFields(int.Parse(Request.QueryString["ndid"]), null, null, null, null, null, null, null, true, null, null, null, null, null, null, null, null, null, null, null); } divInform.InnerHtml = "Tài khoản của bạn đã được kích hoạt. <br> Hãy nhấn <a href=login.aspx><span style=\"font-size:14px\">vào đây</span></a> để đăng nhập."; } else { divInform.InnerHtml = "Mã số kích hoạt của bạn không đúng. <br> Hãy kiểm tra lại mail kích hoạt hoặc nhấn <a href=SendActiveMail.aspx><span style=\"font-size:14px\">vào đây</span></a> để nhận mail kích hoạt"; } } else { divInform.InnerHtml = "Đường dẫn kích hoạt của bạn không đúng. <br> Hãy kiểm tra lại mail kích hoạt hoặc nhấn <a href=SendActiveMail.aspx><span style=\"font-size:14px\">vào đây</span></a> để nhận mail kích hoạt"; } } else { divInform.InnerHtml = "Đường dẫn kích hoạt của bạn không đúng. <br> Hãy kiểm tra lại mail kích hoạt hoặc nhấn <a href=SendActiveMail.aspx><span style=\"font-size:14px\">vào đây</span></a> để nhận mail kích hoạt"; } } catch (Exception ex) { Response.Redirect("message.aspx?msg=" + ex.ToString().Replace("\r\n", ""), false); } }
protected void btnLuu_Click(object sender, EventArgs e) { try { NguoiDung nguoidung = new NguoiDung(); nguoidung.UpdateFields(Common.NguoiDungID(), null, null, txtMatKhauMoi.Text, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null); string strScript = "<script language='JavaScript'>" + "window.parent.Refresh();</script>"; ClientScript.RegisterStartupScript(Type.GetType("System.String"), "Refresh", strScript); } catch (Exception ex) { Response.Redirect("../Message.aspx?msg=" + ex.ToString().Replace("\r\n", " ")); } }
protected void btnLuu_Click(object sender, EventArgs e) { try { NguoiDung nguoidung = new NguoiDung(); nguoidung.UpdateFields(uid, txtHoVaTen.Text, txtTaiKhoan.Text, null, DateTime.Parse(wdcNgaySinh.Value.ToString()), rbtGioiTinhNam.Checked ? true : false, txtEmail.Text, null, null, txtDienThoaiDiDong.Text, txtDienThoaiCoDinh.Text, null, txtDiaChi.Text, txtYM.Text, txtSoChungMinhThu.Text.Trim(), null, null, null, null, null); lblInform.Text = "Thông tin của bạn đã được cập nhật"; LoadData(); } catch (Exception ex) { Response.Write(ex.ToString()); } }