asp中如何将for循环出来的内容写入fso中
fori=1to10response.write("~<br>")next建立fso后fso.write("?????")这里应该怎么写呢?谢谢...
for i=1 to 10
response.write("~<br>")
next
建立fso后
fso.write("?????")
这里应该怎么写呢?
谢谢 展开
response.write("~<br>")
next
建立fso后
fso.write("?????")
这里应该怎么写呢?
谢谢 展开
2个回答
展开全部
<%
dim body
body=""
for i=1 to 10
body=body & "i="&i&"" & vbcrlf
next
Set fso = Server.CreateObject("Scripting.FileSystemObject")
Set fout = fso.Createtextfile(server.MapPath("/temp.txt"),true)
fout.writeline body
fout.close
set fout=nothing
set fso=nothing
%>
dim body
body=""
for i=1 to 10
body=body & "i="&i&"" & vbcrlf
next
Set fso = Server.CreateObject("Scripting.FileSystemObject")
Set fout = fso.Createtextfile(server.MapPath("/temp.txt"),true)
fout.writeline body
fout.close
set fout=nothing
set fso=nothing
%>
更多追问追答
追问
我的for里面有个sub,如何把sub的内容也定义成变量呢?
for i=1 to 10
call sub(1,2)
next
比如是这样的一个情况,如何把sub的也写入fso呢?谢谢
追答
祝你调试成功,呵呵,下班
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询