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