Esempio n. 1
0
        public void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (this.txtF_Power.Text.Trim().Length == 0)
            {
                strErr += "权限不能为空!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            int    F_RoleID = int.Parse(this.lblF_RoleID.Text);
            bool   F_IsUsed = this.chkF_IsUsed.Checked;
            string F_Power  = this.txtF_Power.Text;


            WSS.Model.Roles model = new WSS.Model.Roles();
            model.F_RoleID = F_RoleID;
            model.F_IsUsed = F_IsUsed;
            model.F_Power  = F_Power;

            WSS.BLL.Roles bll = new WSS.BLL.Roles();
            bll.Update(model);
            Maticsoft.Common.MessageBox.ShowAndRedirect(this, "保存成功!", "list.aspx");
        }
Esempio n. 2
0
 private void ShowInfo(int F_RoleID)
 {
     WSS.BLL.Roles   bll   = new WSS.BLL.Roles();
     WSS.Model.Roles model = bll.GetModel(F_RoleID);
     this.lblF_RoleID.Text    = model.F_RoleID.ToString();
     this.chkF_IsUsed.Checked = model.F_IsUsed;
     this.txtF_Power.Text     = model.F_Power;
 }
Esempio n. 3
0
 private void ShowInfo(int F_RoleID)
 {
     WSS.BLL.Roles   bll   = new WSS.BLL.Roles();
     WSS.Model.Roles model = bll.GetModel(F_RoleID);
     this.lblF_RoleID.Text = model.F_RoleID.ToString();
     this.lblF_IsUsed.Text = model.F_IsUsed?"ÊÇ":"·ñ";
     this.lblF_Power.Text  = model.F_Power;
 }
Esempio n. 4
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!Page.IsPostBack)
     {
         WSS.BLL.Roles bll = new WSS.BLL.Roles();
         if (Request.Params["id"] != null && Request.Params["id"].Trim() != "")
         {
             int F_RoleID = (Convert.ToInt32(Request.Params["id"]));
             bll.Delete(F_RoleID);
             Response.Redirect("list.aspx");
         }
     }
 }