/SignUp.aspx.cs

http://vatgia.googlecode.com/ · C# · 89 lines · 71 code · 13 blank · 5 comment · 7 complexity · 1c674099bd7655a03537326afb689e85 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.UI;
  6. using System.Web.UI.WebControls;
  7. using System.Web.Security;
  8. using System.Data;
  9. using System.Data.SqlClient;
  10. public partial class SignUp : System.Web.UI.Page
  11. {
  12. protected void Page_Load(object sender, EventArgs e)
  13. {
  14. }
  15. protected void _btnDangKy_Click(object sender, EventArgs e)
  16. {
  17. string username = _txtTenDangNhap.Text.Trim();
  18. string password = FormsAuthentication.HashPasswordForStoringInConfigFile(_txtMatKhau.Text, "MD5");
  19. string email = _txtEmail.Text.Trim();
  20. // kiem tra username co trung khong ?
  21. String sql = "SELECT * FROM [NGUOIDUNG] WHERE TenDangNhap=@Username";
  22. SqlParameter[] _param = new[] { new SqlParameter("@Username", username) };
  23. DataTable dt_username = DataAccess.ExecuteQuery(sql, _param);
  24. if (dt_username.Rows.Count > 0)
  25. {
  26. Response.Write("<script>alert('Tŕi kho?n ?ă t?n t?i, hăy ch?n m?t tęn tŕi kho?n khác !')</script>");
  27. return;
  28. }
  29. //kiem tra email co trung khong ?
  30. String sql2 = "SELECT * FROM [NGUOIDUNG] WHERE Email=@Email";
  31. SqlParameter[] _param2 = new[] { new SqlParameter("@Email", email) };
  32. DataTable dt_email = DataAccess.ExecuteQuery(sql2, _param2);
  33. if (dt_email.Rows.Count > 0)
  34. {
  35. Response.Write("<script>alert('Email ?ă t?n t?i, hăy ch?n m?t ??a ch? email khác !')</script>");
  36. return;
  37. }
  38. // kiem tra dong y voi dieu khoan ?
  39. if (!_chkDieuKhoan.Checked)
  40. {
  41. Response.Write("<script>alert('B?n ph?i ??ng ý v?i các ?i?u kho?n s? d?ng d?ch v? ?? có th? ??ng ký !')</script>");
  42. return;
  43. }
  44. //kiem tra ma xac nhan va thuc hien luu thong tin vao database
  45. if (_txtCaptcha.Text.Trim().Equals(Session["strCaptcha"].ToString()))
  46. {
  47. string sql3 = @"INSERT INTO [NGUOIDUNG] (TenDangNhap, MatKhau, Ten, Email, GioiTinh, NgaySinh, ThanhPho, Nhom)
  48. VALUES (@TenDangNhap, @MatKhau, @Ten, @Email, @GioiTinh, @NgaySinh, @ThanhPho, @Nhom)";
  49. SqlParameter[] _param3 = new [] { new SqlParameter("@TenDangNhap", username),
  50. new SqlParameter("@MatKhau", password),
  51. new SqlParameter("@Ten", _txtHoTen.Text.Trim()),
  52. new SqlParameter("@Email", email),
  53. new SqlParameter("@GioiTinh", _ddlGioiTinh.SelectedValue),
  54. new SqlParameter("@NgaySinh", _datBirthday.Value), //testing
  55. new SqlParameter("@ThanhPho", _txtThanhPho.Text.Trim()),
  56. new SqlParameter("@Nhom", 2) // tu dong them vao nhom 2 (Thanh Vien)
  57. };
  58. int kq = DataAccess.ExecuteNonQuery(sql3, _param3);
  59. if (kq > 0)
  60. {
  61. //_lblNotifier.Text = "Signup Success!";
  62. MultiView1.SetActiveView(View2); // thong bao dang ky thanh cong
  63. ClearText();
  64. }
  65. else Response.Write("<script>alert('?ă có l?i x?y ra khi thęm d? li?u, xin vui lňng th? l?i sau !')</script>");
  66. }
  67. else Response.Write("<script>alert('mă xác nh?n không ?úng !')</script>");
  68. }
  69. void ClearText()
  70. {
  71. _txtTenDangNhap.Text = "";
  72. _txtHoTen.Text = "";
  73. _txtEmail.Text = "";
  74. _txtThanhPho.Text = "";
  75. }
  76. }