使用ASP将生成的EXCEL文件从HTML保存到服务器中

时间:2013-07-23 22:50:10

标签: html excel file asp-classic

我有一个页面,使用这段代码从HTML下载文件:

Response.ContentType = "application/vnd.ms-excel"
Response.AddHeader "Content-Disposition", "attachment;filename=teste.xls"

有没有办法使用经典的ASP将文件保存到服务器中的特定文件夹中,而不是让客户端下载它?

1 个答案:

答案 0 :(得分:1)

您可以使用Scripting.FileSystemObject对象在Classic ASP中将文件保存在服务器上。以下是制作文本文件的示例:

<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject") 
set f=fs.CreateTextFile("c:\test.txt",true)
f.write("Hello World!")
f.write("How are you today?")
f.close
set f=nothing
set fs=nothing
%>