예제 #1
0
 protected override void OnLoad(EventArgs e)
 {
     //your code
     // get data that's common to all implementors of FactsheetBase
     // and store the values in FactsheetBase's properties
     this.Data = ExtractPageData(Request.QueryString["data"]);
     base.OnLoad(e);
 }
예제 #2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     // get data that's common to all implementors of FactsheetBase
     // and store the values in FactsheetBase's properties
     this.Data = ExtractPageData(Request.QueryString["data"]);
 }
예제 #3
0
 new protected void Page_Load(object sender, EventArgs e)
 {
     this.Data = ExtractPageData(Request.QueryString["data"]);
 }