求助:关于ASP处理word文档
怎么才能用ASP生成Word文档,或者服务器提供模版编辑Word文档也行,生成完毕后,保存在服务器呢。最好给出我代码,当然如果Asp里面加上java 的代码也可。
目标就是客户端用户用网页(用ASP调用客户端word也称)编辑一段文字生成word文档,并保存在服务器。
strLine="word里面的内容" Set fs = server.CreateObject("scripting.filesystemobject") '--假设你想让生成的word文件做如下的存放 filename="test.doc" filename=server.MapPath("./"&filename) '--如果原来的word文件存在的话删除它 if fs.FileExists(filename) then fs.DeleteFile(filename) end if '--创建word文件 set myfile = fs.CreateTextFile(filename,true) myfile.WriteLine(strLine) Set myfile = Nothing Set fs = nothing