I am using the code to export pdf file from a popup.

On button click

  function popupReport() 
    {
        var url = 'Report.aspx';
        window.open(url, 'winPopupReport', 'width=300,height=300,resizable=no,scrollbars=no,toolbar=no,directories=no,status=no,menubar=no,copyhistory=no');
        return false;
    }

and in Report.aspx.cs

 ReportDocument repDoc = ( ReportDocument ) System.Web.HttpContext.Current.Session["StudyReportCrystalDocument"];
        // Stop buffering the response
        Response.Buffer = false;
        // Clear the response content and headers
        Response.ClearContent();
        Response.ClearHeaders();
        try
        {
            repDoc.ExportToHttpResponse( CrystalDecisions.Shared.ExportFormatType.PortableDocFormat, Response, true, "StudyReport" );
        }
        catch( Exception ex )
        {
        }

The code works fine in IE7. But in IE6 the popup window is not closing. Why this happends?

link|improve this question

feedback

2 Answers

Cause this is IE 6 problem. There is stable version of IE 8 available on Microsoft Download Center. Just set it to all computers and do not worry ;)

link|improve this answer
feedback

Some browser deny automatic closing for web pages in some conditions.

Try this workround to close a page.

Write a script, in the page that you want to close, that opens another page; in this sample the script is injected via code after a button click, but you can write it directly in HTML if you need it.

   ClientScript.RegisterStartupScript(typeof(Page), "closePage", "window.open('Success.htm', '_self', null);", true);

Create Success.htm page this way

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
 <head>
  <title></title>
  <script language="javascript" type="text/javascript">
   var redirectTimerId = 0;
   function closeWindow() {
      window.opener = top;
      redirectTimerId = window.setTimeout('redirect()', 2000);
      window.close();
  }

  function stopRedirect() {
     window.clearTimeout(redirectTimerId);
 }

  function redirect() {
     window.location = 'default.aspx';
 }
 </script>
</head>
<body onload="closeWindow()" onunload="stopRedirect()" style="">
   <center><h1>Please Wait...</h1></center>
</body></html>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.