2
我想下載一個excel文件(保存在服務器上)點擊按鈕。當事件引發它下載一個空白Excel文件,而不是 「WORK.xls」下載一個excel文件經典asp
<%
strFile = "WORK.xls"
Response.ContentType = "application/octet-stream"
Response.AddHeader "Content-Disposition", "attachment; filename=" & strFile
set app = Server.CreateObject("ADODB.Stream")
app.open
app.type = adTypeBinary
app.LoadFromFile(Server.MapPath("WORK.xls"))
response.binarywrite app.Read
app.close
Set app = nothing
%>
什麼問題你有? – 2014-09-12 22:38:55
一個空白的Excel文件被下載,而不是保存在服務器上的文件「WORK.xls」 – Sash 2014-09-12 22:39:43