このコードを使用して、ダウンロード用の 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 オブジェクトを使用して、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
%>