我有一个页面,使用这段代码从HTML下载文件:
Response.ContentType = "application/vnd.ms-excel"
Response.AddHeader "Content-Disposition", "attachment;filename=teste.xls"
有没有办法使用经典的ASP将文件保存到服务器中的特定文件夹中,而不是让客户端下载它?
答案 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
%>