文章分类 Classification
asp生成带有样式的word文件方法
稿件来源: 互联网 撰稿作者: 匿名 发表日期: 2008-11-13 14:16:11 阅读次数: 98 查看权限: 游客查看
让asp生成带有样式的word文件,如字体颜色为红色,加粗,字号为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.feitec.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文件成功"
% >
Set fso=Server.CreateObject("Scripting.FileSystemObject")
str="<html><title>asp生成word文件举例</title><body><span style='color:#ff0000;font-size:36px; font-weight:bold;'>欢迎光临www.feitec.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文件成功"
% >
0
0
关键词: asp,word 编辑时间: 2010-07-17
0
高兴0
支持0
搞笑0
不解0
谎言0
枪稿0
震惊0
无奈0
无聊0
反对0
愤怒
0%(0)
0%(0)
- 中搜索:asp生成带有样式的word文件方法
- 中搜索:asp生成带有样式的word文件方法
- 暂无评论
文章图片 article Pictrue
网友评论