Response.Redirect无效

时间:2013-04-26 10:57:30

标签: asp.net

我正在编写一个代码,点击一个按钮后,一个页面将被重定向到另一个页面,打开第二页后将会下载一个pdf文件,就像这个网站http://www.findwhitepapers.com/content22881一样。但不是打开第二页并下载pdf文件只下载pdf文件,但第二页没有打开。第一页代码是

protected void Button1_Click(object sender, EventArgs e)
{
  Response.Redirect("2nd.aspx");
}

第二页的代码如下。

 protected void Page_Load(object sender, EventArgs e)
{
    string filepath = "guar-gum/Guar-gum-export-report.pdf";

    // The file name used to save the file to the client's system..

    string filename = Path.GetFileName(filepath);
    System.IO.Stream stream = null;
    try
    {
        // Open the file into a stream. 
        stream = new FileStream(Server.MapPath("Guar-gum-export-report.pdf"), System.IO.FileMode.Open, System.IO.FileAccess.Read, System.IO.FileShare.Read);
        // Total bytes to read: 
        long bytesToRead = stream.Length;
        Response.ContentType = "application/octet-stream";
        Response.AddHeader("Content-Disposition", "attachment; filename=" + filename);
        // Read the bytes from the stream in small portions. 
        while (bytesToRead > 0)
        {
            // Make sure the client is still connected. 
            if (Response.IsClientConnected)
            {
                // Read the data into the buffer and write into the 
                // output stream. 
                byte[] buffer = new Byte[10000];
                int length = stream.Read(buffer, 0, 10000);
                Response.OutputStream.Write(buffer, 0, length);
                Response.Flush();
                // We have already read some bytes.. need to read 
                // only the remaining. 
                bytesToRead = bytesToRead - length;
            }
            else
            {
                // Get out of the loop, if user is not connected anymore.. 
                bytesToRead = -1;
            }
        }
        Response.Flush();
    }
    catch (Exception ex)
    {
        Response.Write(ex.Message);
        // An error occurred.. 
    }
    finally
    {
        if (stream != null)
        {
            stream.Close();




            //
        }
    }
}

2 个答案:

答案 0 :(得分:0)

您希望在第二页看到什么?你所拥有的只是一个pdf文件。你期望一个空页吗?

您的重定向工作正常。当您单击该按钮时,PDF文件将被发送回浏览器,并将其视为应下载的文件。没有页面会被发送到浏览器,所以没有页面可供查看。

答案 1 :(得分:0)

以下是解决方案:

请勿对您在page2.aspx中执行的文件下载进行编码,而是将iframe放入page2.aspx并将src设置为文件Url。

我猜你的情况是guar-gum/Guar-gum-export-report.pdf。可能是您应该将此更改为从网站的根目录/开头到文件网址。

将其放在page2.aspx

<iframe width="1" height="1" frameborder="0" src="[File location]"></iframe>

这是非常简单的方式,没有重定向或JavaScript,你的Page2.aspx也会打开。

更新

基于以下评论这个答案

我认为没有更好的解决方案,但这里是另一个令人心碎的解决方案(psst!希望你和其他人喜欢..)将page2.aspx代码仅用于文件下载移动到第三页第3页.aspx并将iframe.src设置为page3.aspx

参考

  1. SO - How to start automatic download of a file in Internet Explorer