protected void Page_Load(object sender, EventArgs e) { if (!base.IsPostBack) { this.Flow = this.GetFromContext <RequestFlow>("Flow"); } }
protected void RegisterSampleRequestFlow() { if (this.flow == null) { this.flow = new RequestFlow(); } HttpContext.Current.Items["Flow"] = this.flow; }