NewPass.aspx.cs
上传用户:tree100901
上传日期:2007-06-03
资源大小:2295k
文件大小:3k
源码类别:

OA系统

开发平台:

C#

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Data.SqlClient;
  6. using System.Drawing;
  7. using System.Web;
  8. using System.Web.Security;
  9. using System.Web.SessionState;
  10. using System.Web.UI;
  11. using System.Web.UI.WebControls;
  12. using System.Web.UI.HtmlControls;
  13. namespace OA
  14. {
  15. /// <summary>
  16. /// NewPass 的摘要说明。
  17. /// </summary>
  18. public class NewPass : System.Web.UI.Page
  19. {
  20. protected System.Web.UI.WebControls.TextBox Name;
  21. protected System.Web.UI.WebControls.TextBox Password;
  22. protected System.Web.UI.WebControls.RequiredFieldValidator RequiredFieldValidator1;
  23. protected System.Web.UI.HtmlControls.HtmlInputButton Button1;
  24. protected System.Data.SqlClient.SqlConnection MyConnection;
  25. public string PID,OldPass;
  26. private void Page_Load(object sender, System.EventArgs e)
  27. {
  28. MyConnection=new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]);
  29. if(!IsPostBack)
  30. {
  31. if(Request.QueryString["UserName"]!=null)
  32. Name.Text = Request.QueryString["UserName"].ToString().Trim();
  33. SqlCommand MyCommand0 = new SqlCommand("PersonID",MyConnection);
  34. MyCommand0.CommandType = CommandType.StoredProcedure;
  35. MyCommand0.Parameters.Add(new SqlParameter("@Name", SqlDbType.NVarChar, 50));
  36. MyCommand0.Parameters["@Name"].Value = Request.QueryString["UserName"].ToString().Trim();
  37. if(MyConnection.State.ToString()=="Closed")
  38. MyConnection.Open();
  39. SqlDataReader myReader =  MyCommand0.ExecuteReader(CommandBehavior.CloseConnection);
  40. myReader.Read();
  41. PID = myReader.GetInt32(0).ToString();
  42. Session["PID"] = PID;
  43. Password.Text = "******";
  44. Session["OldPass"] = myReader["Password"].ToString().Trim();
  45. myReader.Close();
  46. MyConnection.Close(); 
  47. }
  48. // 在此处放置用户代码以初始化页面
  49. }
  50. #region Web 窗体设计器生成的代码
  51. override protected void OnInit(EventArgs e)
  52. {
  53. //
  54. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  55. //
  56. InitializeComponent();
  57. base.OnInit(e);
  58. }
  59. /// <summary>
  60. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  61. /// 此方法的内容。
  62. /// </summary>
  63. private void InitializeComponent()
  64. {    
  65. this.Button1.ServerClick += new System.EventHandler(this.Button1_ServerClick);
  66. this.Load += new System.EventHandler(this.Page_Load);
  67. }
  68. #endregion
  69. private void Button1_ServerClick(object sender, System.EventArgs e)
  70. {
  71. if(Session["PID"]!=null)
  72. {
  73. if(Password.Text == "******")
  74. {
  75. RegisterStartupScript("alert","<script>alert('你没有修改口令!')</script>");
  76. }
  77. else
  78. {
  79. string Pass = "";
  80. Pass = FormsAuthentication.HashPasswordForStoringInConfigFile(Password.Text,"MD5");
  81. SqlCommand MyCommand=new SqlCommand("UpdatePersonPass",MyConnection);
  82. MyCommand.CommandType = CommandType.StoredProcedure;
  83. MyCommand.Parameters.Add(new SqlParameter("@Password",SqlDbType.NVarChar, 50));
  84. MyCommand.Parameters["@Password"].Value = Pass;
  85. MyCommand.Parameters.Add(new SqlParameter("@PersonID",SqlDbType.Int, 4));
  86. MyCommand.Parameters["@PersonID"].Value = Session["PID"]; 
  87. if(MyConnection.State.ToString()=="Closed")
  88. MyConnection.Open();  
  89. MyCommand.ExecuteNonQuery();
  90. MyConnection.Close(); 
  91. RegisterStartupScript("alert","<script>alert('注册信息修改完毕,系统要求重新登录!');window.open('login.aspx','_top','');window.close();</script>");
  92. }
  93. }
  94. }
  95. }
  96. }