C
Carl Maloney
I have a user control that is loading and prerendering before the parent
page is loaded. The user control needs a value from the parent page
before the control gets pre rendered. I have tried calling the
OnPreRender:
protected override void OnPreRender(System.EventArgs e)
{
fillImageTable(Convert.ToInt32(Request.QueryString["id"]));
}
This property is being set in the parent page:
public static string team_id = "";
I know it is getting set because when I hit refresh it works.
Any ideas? Thanks for the help!
page is loaded. The user control needs a value from the parent page
before the control gets pre rendered. I have tried calling the
OnPreRender:
protected override void OnPreRender(System.EventArgs e)
{
fillImageTable(Convert.ToInt32(Request.QueryString["id"]));
}
This property is being set in the parent page:
public static string team_id = "";
I know it is getting set because when I hit refresh it works.
Any ideas? Thanks for the help!