RedirectToAction不起作用

时间:2012-01-31 21:07:14

标签: c# model-view-controller

RedirectToAction不显示视图。

    // Go populate and display PDF using XML file
    DoPDF(stXML); 
}
UpDateDropDown(model);
return RedirectToAction("ReportsSelection", "Reports");

渲染代码:

private void DoPDF(String stXML)
{
    string filename = string.Concat(Guid.NewGuid().ToString(), ".pdf");
    PdfReader reader = new PdfReader(new RandomAccessFileOrArray(Request.MapPath(_NFCPage._NFReference.FM_NOFEAR_PDF)), null);
    // Create the iTextSharp document
    // Set the document to write to memory

    using (MemoryStream memStream = new MemoryStream())
    {
        PdfStamper ps = new PdfStamper(reader, memStream);
        // Populate the PDF with values in the XML file
        AcroFields af = ps.AcroFields;
        ParserXML(stXML, af);
        ps.FormFlattening = false;
        ps.Writer.CloseStream = false;
        ps.Close();
        byte[] buf = new byte[memStream.Position];
        memStream.Position = 0;
        memStream.Read(buf, 0, buf.Length);
        // Set the appropriate ContentType
        Response.ContentType = "Application/pdf";
        // Get the physical path to the file
        Response.AddHeader("Content-disposition", string.Format("attachment; filename={0};", filename));
        // Write the file directly to the HTTP content output stream.
        Response.Buffer = true;
        Response.Clear();

        Response.BinaryWrite(memStream.GetBuffer());  //Comment out to work
        Response.End();                               //Comment out to work
    }
}

我注意到如果我删除DoPDF例程中的最后两行,它会显示视图。

3 个答案:

答案 0 :(得分:3)

Response.End()将使服务器发送HTTP响应。此时您的浏览器将认为请求已完成,并且不会发生重定向。你能提供更多关于你想要完成的事情的背景吗?然后我们可以更好地了解如何帮助您。

答案 1 :(得分:1)

编辑:nvm,你有一个Response.End()来电,这将结束请求的执行,你的重定向显然不起作用。如果您尝试刷新流,则需要执行Response.Flush()

答案 2 :(得分:1)

不要在MVC中处理文件下载,正如您所看到的,它可能会导致问题......

return File(memStream, "Application/pdf", filename);

会为你做一切。

MSDN