关于在asp中操作word文档的问题!!!
set wApp=createobject("Word.Application")
wApp.visible=flase
wApp.Documents.add
wApp.Selection.TypeParagraph
wApp.Selection.TypeText"怎么办啊!!!!!"
wApp.ActiveDocument.SaveAs server.MapPath("/new.doc")
set wApp=nothing
Response.Redirect("/new.doc")
上面是一段创建一个word文档的代码,为什么提示“无法打开宏储存”,错误出在第三条语句!!!!