我在我的服務器上有一個文件,或者在這個本地主機上有一個文件。我想使用此代碼,發送給用戶:Response.TransmitFile損壞文件
Response.ContentType = "application/pdf";
Response.AppendHeader("Content-Disposition", "attachment; filename=buylist.pdf");
Response.TransmitFile(Server.MapPath("~/buylist.pdf"));
Response.ContentType = "application/csv";
Response.AppendHeader("Content-Disposition", "attachment; filename=buylist.csv");
Response.TransmitFile(Server.MapPath("~/buylist.csv"));
我知道我想要傳遞我們的罰款文件,我甚至嘗試添加Response.Close()
但每次文件已損壞。 csv給我的網頁的HTML。我真的迷失了。
這只是一個錯誤,在第二個塊中,您將文件名設置爲PDF而不是CSV? – xcud 2012-02-10 16:36:26
@xcud是的,我會修復它 – 2012-02-10 16:37:51