user_board_passupdo.aspx.cs
上传用户:scene123
上传日期:2010-02-19
资源大小:3311k
文件大小:3k
源码类别:

.net编程

开发平台:

C#

  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 System.Data.OleDb;
  12. using System.Configuration;
  13. using System.Text;
  14. using System.Web.Security;
  15. using System.Security.Cryptography;
  16. namespace kuangren
  17. {
  18. /// <summary>
  19. /// user_board_passupdo 的摘要说明。
  20. /// </summary>
  21. public class user_board_passupdo : System.Web.UI.Page
  22. {
  23. protected int intRunTime;
  24. protected DateTime dtStartTime = DateTime.Now;
  25. public string usercookies;
  26. protected System.Data.OleDb.OleDbCommand cmd;
  27. protected System.Data.OleDb.OleDbCommand cmd4;
  28. protected System.Data.OleDb.OleDbConnection conn;
  29. protected  DataSet dsPending;
  30. public string passjudge;
  31. public string s1;
  32. public string s2;
  33. public string passjudgeresult;
  34. public string sql;
  35.         public string showinfor;
  36. public string showinfor1;
  37. public string newpass;
  38. public string newpass1;
  39. protected string OleDbSqlforum;
  40. protected string OleDbsql;
  41. private void Page_Load(object sender, System.EventArgs e)
  42. {
  43.  if (Request.Cookies["jusername"]!=null)
  44.  {
  45.  usercookies=Request.Cookies["jusername"].Value;
  46.  }
  47.  else
  48.  {
  49.  Response.Redirect("logine.aspx");
  50.  }
  51. s1=(FormsAuthentication.HashPasswordForStoringInConfigFile(Request.Form["passold"].ToString().Trim(),"MD5"));
  52. s2=s1.Substring(8,s1.Length-16).ToLower();
  53. newpass1=(FormsAuthentication.HashPasswordForStoringInConfigFile(Request.Form["passnew"].ToString().Trim(),"MD5"));
  54.             newpass=newpass1.Substring(8,newpass1.Length-16).ToLower();
  55. conn = new OleDbConnection(ConfigurationSettings.AppSettings["cnFriends.ConnectionString"]);
  56. sql="SELECT u_pass  from userinfo where u_user='"+usercookies+"'";
  57. dsPending=new DataSet();
  58. OleDbDataAdapter adWord=new OleDbDataAdapter(sql,conn);
  59. adWord.Fill(dsPending,"userinfo");
  60. passjudge=Convert.ToString(dsPending.Tables[0].Rows[0]["u_pass"]);
  61. if (s2==passjudge)
  62. {
  63. showinfor="密码修改成功";
  64. showinfor1="<b>操作成功</b><br><br><li> 您的密码已经成功修改</li>";
  65. StringBuilder sb=new StringBuilder();
  66. ArrayList values=new ArrayList();
  67. sb.Append("update [userinfo] set u_pass='"+newpass+"'where u_user='"+usercookies+"'");            
  68. OleDbsql=String.Format(sb.ToString(),values.ToArray());
  69. cmd=new OleDbCommand(OleDbsql,conn);
  70. conn.Open();
  71. bool doredirect=true;
  72. try
  73. {
  74. cmd.ExecuteNonQuery();
  75. }
  76. catch
  77. {
  78. doredirect=false;
  79. }
  80. finally
  81. {
  82. conn.Close();
  83. }
  84. if(doredirect)
  85. {
  86. }
  87. else
  88. {
  89. }
  90. }
  91. else
  92. {
  93.             showinfor="密码修改失败";
  94. showinfor1="<b>操作失败</b><br><br><li> 您的密码旧密码输入错误</li>";
  95. }
  96. conn.Close();
  97. }
  98. #region Web 窗体设计器生成的代码
  99. override protected void OnInit(EventArgs e)
  100. {
  101. //
  102. // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
  103. //
  104. InitializeComponent();
  105. base.OnInit(e);
  106. }
  107. /// <summary>
  108. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  109. /// 此方法的内容。
  110. /// </summary>
  111. private void InitializeComponent()
  112. {    
  113. this.Load += new System.EventHandler(this.Page_Load);
  114. }
  115. #endregion
  116. }
  117. }