当前位置:K88软件开发文章中心编程语言AspAsp01 → 文章内容

asp生成带有样式的word文件

减小字体 增大字体 作者:佚名     来源:asp编程网  发布时间:2018-12-30 8:31:36

让asp生成带有样式的word文件,如字体颜色为红色,加粗,字号为36号的文字,代码如下:
<
%
Set fso=Server.CreateObject("Scripting.FileSystemObject")
str="<
html>
<
title>
asp生成word文件举例<
/title>
<
body>
<
span style='color:
#ff0000
font-size:36px
font-weight:bold
'>
欢迎光临www.aspprogram.cn(asp编程网)<
/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文件成功"

% >


asp生成带有样式的word文件