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

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 RoleAdd : System.Web.UI.Page
  12. {
  13.     /// <summary>
  14.     /// 模板
  15.     /// </summary>
  16.     Model.User_Priv MUP = new Model.User_Priv();
  17.     /// <summary>
  18.     /// 业务
  19.     /// </summary>
  20.     BLL.User_Priv BUP = new BLL.User_Priv();
  21.     protected void Page_Load(object sender, EventArgs e)
  22.     {
  23.         LoginLogic.MatchLoad("", "RoleAdd");
  24.     }
  25.     protected void Button1_Click(object sender, EventArgs e)
  26.     {
  27.         try
  28.         {
  29.             int testNo = 0;
  30.             if (!int.TryParse(PrivNo_TextBox.Text, out testNo))
  31.             {
  32.                 throw new Exception("角色序号必须为数字");
  33.             }
  34.             MUP.PrivNo = int.Parse(PrivNo_TextBox.Text);
  35.             MUP.PrivName = PrivName_TextBox.Text;
  36.             MUP.FuncIdStr = "";
  37.             MUP.LeftMenu = "";
  38.             BUP.Add(MUP);
  39.             MessageBox.Show("角色添加成功!", "RoleManager.aspx");
  40.         }
  41.         catch (Exception exp) { MessageBox.Show(exp.Message); }
  42.     }
  43. }