请教一个FSO生成文件遇到的一个问题
代码如下:
<textarea style="width:100%; height:100%;" rows="19" name="body" cols="102"><!--#include file="qx.asp"--></textarea><input name="change" class=buttonface value="生成全部星(HTML页)" type="submit">
提交代码:
filename="../list/qx.html"
if request("body")<>"" then
body=request("body")
Set fso = Server.CreateObject("Scripting.FileSystemObject")
Set fout = fso.CreateTextFile(server.mappath(""&filename&""))
fout.Write body
fout.close
set fout=nothing
set fso=nothing
问题出在:qx.asp,qx.asp是个读数据库的页面,当数据库里内容比较少的时候没有任何问题,生成正常,但是当然数据库里内容非常多的时候,就无法生成了,怎么解决?