I have a ASP.NET button on a page that opens a popup window this way:
String cstext1 = "window.open('ReportViewer.aspx');";
ScriptManager.RegisterStartupScript(this.Page, this.Page.GetType(),
Guid.NewGuid().ToString(), cstext1, true);
The ReportViewer.aspx
file gets some data, passes it to crystal reports and streams the PDF output back.
In IE7 the window opens and immediately closes afterwords.
I found a workaround by lowering IE security settings for the site but I would like to know if I can make it work without requiring the user to tweak his settings.