I have a upperclass that "scans" the url-parameter and should return a specific page. The "scanning" works fine, but the specific page is always blank (there is no htmlsourcecode to see). How to call the specific page and display it?
public UpperClass()
{
Page.LoadComplete += new EventHandler(Page_LoadComplete);
}
protected void Page_LoadComplete(object sender, EventArgs e)
{
CheckParams();
}
public void CheckParams()
{
//... parse url
if (x != null & y != null)
new specific_page(x, y); //here I load the specific page
}