0

我在 mvc 中使用以下代码下载 Excel 文件,但它显示错误查询字符串太长。

public ActionResult Download(string input)
{
    Response.Clear();
    Response.ClearHeaders();
    Response.ClearContent();
    Response.Buffer = true;
    Response.AddHeader("Content-Disposition", "attachment; filename= download.xlsx");
    Response.AddHeader("Content-Type", "application/Excel");
    Response.ContentType = "application/vnd.ms-excel";
    Response.WriteFile(input);
    Response.End();

    return Content(String.Empty);
}
4

1 回答 1

0

此代码适用于我的 PDF:

public FileStreamResult DownnloadPDF(int id)
        {Document document = new Document();

            MemoryStream stream = new MemoryStream();
                PdfWriter pdfWriter = PdfWriter.GetInstance(document, stream);
                pdfWriter.CloseStream = false;

                document.Open();

                formatPDF(document, model);

document.Close();

            stream.Flush(); //Always catches me out
            stream.Position = 0; //Not sure if this is required

            return File(stream, "application/pdf", "title" + ".pdf");
        }

我真的认为您的 ActionResult 将不起作用。

于 2014-12-03T15:31:22.540 回答