PassWordChangeUserForm.aspx.cs
上传用户:simon2hong
上传日期:2021-11-18
资源大小:16746k
文件大小:2k
源码类别:

OA系统

开发平台:

C#

  1. using System;
  2. using System.Data;
  3. using System.Configuration;
  4. using System.Collections;
  5. using System.Web;
  6. using System.Web.Security;
  7. using System.Web.UI;
  8. using System.Web.UI.WebControls;
  9. using System.Web.UI.WebControls.WebParts;
  10. using System.Web.UI.HtmlControls;
  11. public partial class PassWordChangeUserForm : System.Web.UI.Page
  12. {
  13.     Model.Users nc_Users = new Model.Users();
  14.     BLL.Users bll_Users = new BLL.Users();
  15.     protected void Page_Load(object sender, EventArgs e)
  16.     {
  17.         if (!IsPostBack)
  18.         {
  19.             int IdNum = int.Parse(SessionInclude.Id);
  20.             nc_Users = bll_Users.GetModel(IdNum);
  21.         }
  22.     }
  23.     public void LoadSet()
  24.     {
  25.         try
  26.         { 
  27.             //Password
  28.             if (KeyValue_Password.Text == "")
  29.             {
  30.                 throw new Exception("密码不能为空!");
  31.             }
  32.             if (KeyValue_Password.Text != KeyValue_Password1.Text)
  33.             {
  34.                 throw new Exception("确认密码不符!");
  35.             }
  36.             int IdNum = int.Parse(SessionInclude.Id);
  37.             nc_Users = bll_Users.GetModel(IdNum);
  38.             nc_Users.Password = KeyValue_Password1.Text;
  39.             bll_Users.Update(nc_Users);
  40.             MessageBox.Show("更新成功!");
  41.         }
  42.         catch(Exception exp)
  43.         {
  44.          
  45.             MessageBox.Show(exp.Message);
  46.         }
  47.     }
  48.     protected void Button1_Click(object sender, EventArgs e)
  49.     {
  50.    
  51.             LoadSet();
  52.     
  53.     }
  54. }