Example #1
0
 protected void Page_Load(object sender, System.EventArgs e)
 {
     base.Response.Cache.SetNoStore();
     if (!this.Page.IsPostBack)
     {
         this.BusinessCode  = base.Request["code"];
         this.BusinessClass = base.Request["class"];
         this.RecordID      = new System.Guid(base.Request["record"]);
         this.TemplateCount = System.Convert.ToInt32(base.Request["mbs"]);
         this.ProjectCode   = base.Request["project"].ToString();
         this.UserCode      = this.Session["yhdm"].ToString();
         if (this.TemplateCount == 1)
         {
             this.OffsetCount = System.Convert.ToInt32(base.Request["lx"]);
             this.NodeID      = System.Convert.ToInt32(base.Request["node"]);
         }
         this.TemplateID     = System.Convert.ToInt32(base.Request["it"]);
         this.LbTemName.Text = FlowAuditAction.strTempLateName(this.TemplateID);
         this.IBPick.Attributes["onclick"] = "return pickPerson();";
         this.DutyBind();
     }
 }