Any idea why the following code runs from Page_Load() but not from a function which runs from CreateChildControls() function?
ScriptManager.RegisterStartupScript(this.Page, Page.GetType(), "text", "alert('test');", true);
For some reason I can't seem to make the alert work.
Go to the complete details ...