ChangePassword.aspx.cs
上传用户:autodoor
上传日期:2022-08-04
资源大小:9973k
文件大小:3k
源码类别:

.net编程

开发平台:

Others

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Web;
  7. using System.Web.SessionState;
  8. using System.Web.UI;
  9. using System.Web.UI.WebControls;
  10. using System.Web.UI.HtmlControls;
  11. using qminoa.DA;
  12. using qminoa.Common;
  13. namespace qminoa.Webs.sysSecurity
  14. {
  15. public class ChangePassword : qminoa.Webs.PageBase
  16. {
  17. protected System.Web.UI.WebControls.RequiredFieldValidator LoginIDRequiredFieldValidator;
  18. protected System.Web.UI.WebControls.RequiredFieldValidator LoginPasswordRequiredFieldValidator;
  19. protected System.Web.UI.WebControls.ValidationSummary LogonValidationSummary;
  20. protected System.Web.UI.WebControls.TextBox old_password;
  21. protected System.Web.UI.WebControls.TextBox new_password;
  22. protected System.Web.UI.WebControls.TextBox repeat_password;
  23. protected System.Web.UI.WebControls.RequiredFieldValidator Requiredfieldvalidator1;
  24. protected System.Web.UI.WebControls.CompareValidator CompareValidator1;
  25. protected System.Web.UI.WebControls.Button btnOK;
  26. protected System.Web.UI.HtmlControls.HtmlForm login;
  27. private void Page_Load(object sender, System.EventArgs e)
  28. {
  29. this.PageBegin("修改密码",false);
  30. }
  31. #region Web Form Designer generated code
  32. override protected void OnInit(EventArgs e)
  33. {
  34. //
  35. // CODEGEN:该调用是 ASP.NET Web 窗体设计器所必需的。
  36. //
  37. InitializeComponent();
  38. base.OnInit(e);
  39. }
  40. /// <summary>
  41. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  42. /// 此方法的内容。
  43. /// </summary>
  44. private void InitializeComponent()
  45. {    
  46. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  47. this.Load += new System.EventHandler(this.Page_Load);
  48. }
  49. #endregion
  50. private void btnOK_Click(object sender, System.EventArgs e)
  51. {
  52. EmpDB EmpDataAccess=new EmpDB();
  53. string strloginid = this.EmpName;
  54. string strEmpID = this.Empid;
  55. string strOldPassword = old_password.Text.ToString();
  56. string strNewPassword = new_password.Text.ToString();
  57. String[] strLoginflag =EmpDataAccess.Login (strloginid,strOldPassword);
  58.              
  59. if(strLoginflag[0]=="usererror"||strLoginflag[0]=="pwderror"||strLoginflag[0]=="noacount")
  60. JScript.Alert("旧密码不正确!");
  61. else
  62. {
  63. if(EmpDataAccess.ChangePassword(strEmpID,strNewPassword))
  64. {
  65. this.WriteOptLog("修改密码");
  66. JScript.Alert("修改密码成功!");
  67. Response.Redirect("../desktop.aspx",false);
  68. }
  69. else
  70. JScript.Alert("修改密码失败!");
  71. }
  72. }
  73. }
  74. }