D
Daniel Roth
Solution to the window.open doesn't get focus with SmartNavigation problem
Instead of
string script = "<script> var ref = window.open('ViewReport.aspx');</script>";
RegisterStartupScript("ShowReport",script);
In the load event put
ButtonPrint.Attributes.Add("onclick","window.open('ViewReport.aspx');");
Daniel Roth
MCSD.NET
Instead of
string script = "<script> var ref = window.open('ViewReport.aspx');</script>";
RegisterStartupScript("ShowReport",script);
In the load event put
ButtonPrint.Attributes.Add("onclick","window.open('ViewReport.aspx');");
Daniel Roth
MCSD.NET