NewPass.aspx.cs
资源名称:OA_at.rar [点击查看]
上传用户:tree100901
上传日期:2007-06-03
资源大小:2295k
文件大小:3k
源码类别:
OA系统
开发平台:
C#
- using System;
- using System.Collections;
- using System.ComponentModel;
- using System.Data;
- using System.Data.SqlClient;
- using System.Drawing;
- using System.Web;
- using System.Web.Security;
- using System.Web.SessionState;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using System.Web.UI.HtmlControls;
- namespace OA
- {
- /// <summary>
- /// NewPass 的摘要说明。
- /// </summary>
- public class NewPass : System.Web.UI.Page
- {
- protected System.Web.UI.WebControls.TextBox Name;
- protected System.Web.UI.WebControls.TextBox Password;
- protected System.Web.UI.WebControls.RequiredFieldValidator RequiredFieldValidator1;
- protected System.Web.UI.HtmlControls.HtmlInputButton Button1;
- protected System.Data.SqlClient.SqlConnection MyConnection;
- public string PID,OldPass;
- private void Page_Load(object sender, System.EventArgs e)
- {
- MyConnection=new SqlConnection(System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]);
- if(!IsPostBack)
- {
- if(Request.QueryString["UserName"]!=null)
- Name.Text = Request.QueryString["UserName"].ToString().Trim();
- SqlCommand MyCommand0 = new SqlCommand("PersonID",MyConnection);
- MyCommand0.CommandType = CommandType.StoredProcedure;
- MyCommand0.Parameters.Add(new SqlParameter("@Name", SqlDbType.NVarChar, 50));
- MyCommand0.Parameters["@Name"].Value = Request.QueryString["UserName"].ToString().Trim();
- if(MyConnection.State.ToString()=="Closed")
- MyConnection.Open();
- SqlDataReader myReader = MyCommand0.ExecuteReader(CommandBehavior.CloseConnection);
- myReader.Read();
- PID = myReader.GetInt32(0).ToString();
- Session["PID"] = PID;
- Password.Text = "******";
- Session["OldPass"] = myReader["Password"].ToString().Trim();
- myReader.Close();
- MyConnection.Close();
- }
- // 在此处放置用户代码以初始化页面
- }
- #region Web 窗体设计器生成的代码
- override protected void OnInit(EventArgs e)
- {
- //
- // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
- //
- InitializeComponent();
- base.OnInit(e);
- }
- /// <summary>
- /// 设计器支持所需的方法 - 不要使用代码编辑器修改
- /// 此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.Button1.ServerClick += new System.EventHandler(this.Button1_ServerClick);
- this.Load += new System.EventHandler(this.Page_Load);
- }
- #endregion
- private void Button1_ServerClick(object sender, System.EventArgs e)
- {
- if(Session["PID"]!=null)
- {
- if(Password.Text == "******")
- {
- RegisterStartupScript("alert","<script>alert('你没有修改口令!')</script>");
- }
- else
- {
- string Pass = "";
- Pass = FormsAuthentication.HashPasswordForStoringInConfigFile(Password.Text,"MD5");
- SqlCommand MyCommand=new SqlCommand("UpdatePersonPass",MyConnection);
- MyCommand.CommandType = CommandType.StoredProcedure;
- MyCommand.Parameters.Add(new SqlParameter("@Password",SqlDbType.NVarChar, 50));
- MyCommand.Parameters["@Password"].Value = Pass;
- MyCommand.Parameters.Add(new SqlParameter("@PersonID",SqlDbType.Int, 4));
- MyCommand.Parameters["@PersonID"].Value = Session["PID"];
- if(MyConnection.State.ToString()=="Closed")
- MyConnection.Open();
- MyCommand.ExecuteNonQuery();
- MyConnection.Close();
- RegisterStartupScript("alert","<script>alert('注册信息修改完毕,系统要求重新登录!');window.open('login.aspx','_top','');window.close();</script>");
- }
- }
- }
- }
- }