RedirectToAction不起作用

本文关键字:不起作用 RedirectToAction | 更新日期: 2023-09-27 18:22:14

RedirectToAction不显示View。

    // 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例程中的最后两行,它确实会显示视图。

RedirectToAction不起作用

Response.End()将导致服务器发送HTTP响应。此时,您的浏览器将认为请求已完成,重定向不会发生。你能提供更多关于你正在努力实现的目标的背景吗?然后我们可以更好地了解如何帮助您。

Edit:nvm,您有一个Response.End()调用,它将结束请求的执行,并且您的重定向显然无法工作。如果您试图刷新流,则需要执行Response.Flush()

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

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

会为你做一切的。

MSDN