RoleEditor.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 RoleEditor : System.Web.UI.Page
  12. {
  13.     public int User_PrivID = -1;
  14.     public string Functions = "";
  15.     /// <summary>
  16.     /// 模板
  17.     /// </summary>
  18.     Model.User_Priv MUP = new Model.User_Priv();
  19.     /// <summary>
  20.     /// 业务
  21.     /// </summary>
  22.     BLL.User_Priv BUP = new BLL.User_Priv();
  23.     protected void Page_Load(object sender, EventArgs e)
  24.     {
  25.         LoginLogic.MatchLoad("", "RoleEditor");
  26.       object User_PrivObj=Request.QueryString["id"];
  27.       if (User_PrivObj != null)
  28.       {
  29.           User_PrivID = int.Parse(User_PrivObj.ToString());
  30.               MUP = BUP.GetModel(User_PrivID);
  31.           if (!IsPostBack)
  32.           {
  33.           
  34.               PrivNo_TextBox.Text = MUP.PrivNo.ToString();
  35.               PrivName_TextBox.Text = MUP.PrivName;
  36.           }
  37.           if (!string.IsNullOrEmpty(MUP.FuncIdStr))
  38.           {
  39.               Functions = MUP.FuncIdStr;
  40.           }
  41.       }
  42.     }
  43.     protected void Button1_Click(object sender, EventArgs e)
  44.     {
  45.         try
  46.         {
  47.             int testNo = 0;
  48.             if (!int.TryParse(PrivNo_TextBox.Text, out testNo))
  49.             {
  50.                 throw new Exception("角色序号必须为数字");
  51.             }
  52.             MUP.PrivNo = int.Parse(PrivNo_TextBox.Text);
  53.             MUP.PrivName = PrivName_TextBox.Text;
  54.             MUP.ID = User_PrivID;
  55.             MUP.FuncIdStr = Functions;
  56.             BUP.Update(MUP);
  57.             MessageBox.Show("角色修改成功!");
  58.         }
  59.         catch (Exception exp)
  60.         {
  61.             MessageBox.Show(exp.Message);
  62.         }
  63.     }
  64. }