当前位置:Gxlcms > ASP > asp生成带有样式的word文件方法

asp生成带有样式的word文件方法

时间:2021-07-01 10:21:17 帮助过:64人阅读

代码如下:

< %
Set fso=Server.CreateObject("Scripting.FileSystemObject")
str="<html><title>asp生成word文件举例</title><body><span style='color:#ff0000;font-size:36px; font-weight:bold;'>欢迎光临www.gxlsystem.com(脚本之家)</span></body></html>"
filename= "2008.doc"
Set act = fso.CreateTextFile(server.mappath(filename), true)
act.WriteLine(str)
act.close
Set fso=Nothing
response.write "生成Word文件成功"
% >

人气教程排行