I have a C # asp.net 3.5 application. I'm trying to open a window from code after a specific event. I have this, but it does not work and there are no errors in firebug.
protected override void OnPreRender(EventArgs e) { base.OnPreRender(e); if (openCredentialsWindow) { if (openCredentialsWindow_ClientId != Guid.Empty) { this.Page.ClientScript.RegisterStartupScript(this.GetType(), "openCredentials", string.Format("radopen('Services.aspx?clientId={0}, Window_Services')", openCredentialsWindow_ClientId.ToString())); } } }
Any ideas?
user176657 Dec 01 '09 at 20:10 2009-12-01 20:10
source share