UpdateInstanceAcl.aspx.cs
资源名称:H3_OA.rar [点击查看]
上传用户:li2971742
上传日期:2021-11-18
资源大小:39096k
文件大小:2k
源码类别:
OA系统
开发平台:
C#
- using System;
- using System.Collections;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Web;
- using System.Web.SessionState;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using System.Web.UI.HtmlControls;
- namespace OThinker.H3.Portal
- {
- /// <summary>
- /// Summary description for UpdateCaseACL.
- /// </summary>
- public partial class UpdateCaseACL : PortalPage
- {
- #region 参数
- private string AclID
- {
- get
- {
- if(this.Request.QueryString[Param_AclID] == null || this.Request.QueryString[Param_AclID] == "")
- {
- // ERROR,这里应该导到错误页面上
- return OThinker.H3.Acl.Acl.NullObjectID;
- }
- else
- {
- return this.Request.QueryString[Param_AclID];
- }
- }
- }
- #endregion
- protected void Page_Load(object sender, System.EventArgs e)
- {
- if(!this.IsPostBack)
- {
- this.lblUserAlias.Text = OThinker.H3.Server.Engine.Organization.GetFullName(this.CurrentAcl.UserID);
- this.chkAdministrator.Checked = this.CurrentAcl.Administrator;
- this.chkView.Checked = this.CurrentAcl.View;
- }
- }
- private OThinker.H3.Acl.InstanceAcl CurrentAcl
- {
- get
- {
- if(this.Session[OThinker.H3.WorkSheet.Sessions.GetInstanceACL(this.AclID)] == null)
- {
- this.Session[OThinker.H3.WorkSheet.Sessions.GetInstanceACL(this.AclID)] = OThinker.H3.Server.Engine.InstanceAclManager.GetAcl(this.AclID);
- }
- return (OThinker.H3.Acl.InstanceAcl)this.Session[OThinker.H3.WorkSheet.Sessions.GetInstanceACL(this.AclID)];
- }
- }
- #region Web Form Designer generated code
- override protected void OnInit(EventArgs e)
- {
- //
- // CODEGEN: This call is required by the ASP.NET Web Form Designer.
- //
- InitializeComponent();
- base.OnInit(e);
- }
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- }
- #endregion
- protected void btnOk_Click(object sender, System.EventArgs e)
- {
- OThinker.H3.Server.Engine.InstanceAclManager.Update(new OThinker.H3.Acl.InstanceAcl[] { this.CurrentAcl });
- }
- protected void btnCancel_Click(object sender, System.EventArgs e)
- {
- this.Response.Redirect(
- PageName_InstanceAcl + "?" +
- Param_InstanceId + "=" + this.CurrentAcl.InstanceId);
- }
- }
- }