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); }
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"]); }
new protected void Page_Load(object sender, EventArgs e) { this.Data = ExtractPageData(Request.QueryString["data"]); }