Example #1
0
 protected void Page_Load(object sender, System.EventArgs e)
 {
     base.Response.Cache.SetNoStore();
     if (!this.Page.IsPostBack)
     {
         this.InstanceCode = new System.Guid(base.Request["ic"]);
         string businessCode = FlowAuditAction.GetBusinessCode(this.InstanceCode);
         if (businessCode != "")
         {
             int num = FlowAuditAction.DoWithUrl(businessCode).IndexOf("?");
             if (num > 0)
             {
                 this.frmPage.Attributes["src"] = FlowAuditAction.DoWithUrl(businessCode) + "&ic=" + this.InstanceCode;
             }
             else
             {
                 this.frmPage.Attributes["src"] = FlowAuditAction.DoWithUrl(businessCode) + "?ic=" + this.InstanceCode;
             }
         }
         this.GetPageBind();
     }
 }