惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LangChain Blog
博客园 - 司徒正美
美团技术团队
WordPress大学
WordPress大学
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
人人都是产品经理
人人都是产品经理
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
Troy Hunt's Blog
S
Schneier on Security
T
The Exploit Database - CXSecurity.com
P
Proofpoint News Feed
云风的 BLOG
云风的 BLOG
Engineering at Meta
Engineering at Meta
Cisco Talos Blog
Cisco Talos Blog
T
Tor Project blog
B
Blog
NISL@THU
NISL@THU
月光博客
月光博客
博客园 - 【当耐特】
AWS News Blog
AWS News Blog
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
腾讯CDC
L
Lohrmann on Cybersecurity
The Cloudflare Blog
L
LINUX DO - 最新话题
S
Security @ Cisco Blogs
S
Secure Thoughts
Spread Privacy
Spread Privacy
有赞技术团队
有赞技术团队
The Last Watchdog
The Last Watchdog
Project Zero
Project Zero
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Vercel News
Vercel News
H
Hacker News: Front Page
S
SegmentFault 最新的问题
Schneier on Security
Schneier on Security
aimingoo的专栏
aimingoo的专栏
P
Privacy & Cybersecurity Law Blog
博客园 - 三生石上(FineUI控件)
Forbes - Security
Forbes - Security
C
CXSECURITY Database RSS Feed - CXSecurity.com
I
InfoQ
T
Tailwind CSS Blog
Application and Cybersecurity Blog
Application and Cybersecurity Blog
G
GRAHAM CLULEY
W
WeLiveSecurity
小众软件
小众软件
Recorded Future
Recorded Future
Cyberwarzone
Cyberwarzone
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org

博客园 - 柴火

SqlServer死锁处理存储过程 DB2常用SQL的写法(未整理) 常用快递公司列表 看看google员工的“堕落”工作环境 Eclipse的快捷键大全(不断更新中) [转]不花钱不求人 硬盘数据恢复六大招 [转]大学生不如狗 [转]dos常用命令 [转]net命令详解 [转]FTP命令大全 [转]如何在Web页面上直接打开、编辑、创建Office文档 鼠标指向提示javascript程序 网页或VB中操作word的方法 Asp.net中的两种刷新父窗体方法 [转]一个民工的月账本(看了让人流泪) 数据库连接串大全 【Asp.Net】在DataGrid里添加行脚本代码的方法 【Asp.Net】DataGrid里实现多选提交的方法 简单的SQL分页法
Script直接写文件内容到word
柴火 · 2006-09-18 · via 博客园 - 柴火

 1<HTML>
 2<HEAD>
 3<meta HTTP-EQUIV="Content-Type" content="text/html; charset=gb_2312-80">
 4<link rel="stylesheet" type="text/css" href="edit.css">
 5<title>保存为Word文档</title>
 6</HEAD>
 7<script language="javascript">
 8window.returnValue=0
 9
10<BODY>
11<font color="#000080"><strong><div id="strHint" align="center">数据处理中,请等待<br>
12Data processing, please wait</div></strong></font><font color="#0080C0">
13
14
15<script language="vbscript">
16
17On Error Resume Next
18
19Dim wApp
20
21Set wApp = CreateObject("Word.Application"[img]/images/wink.gif[/img]
22If Err.number > 0 Then
23Alert "没法保存为Word文件,请正确安装Word97"
24else
25wApp.visible = True 
26wApp.Documents.add
27
28wApp.Selection.TypeParagraph
29wApp.Selection.Font.Bold = True
30wApp.Selection.TypeText "九八Joy ASP维护工作意见"
31
32wApp.Selection.ParagraphFormat.Alignment = 1 
33rem 居 中
34
35wApp.Selection.TypeParagraph 
36wApp.Selection.Font.Bold = false 
37
38wApp.Selection.TypeText "-- 飞鸟"
39
40wApp.Selection.TypeParagraph 
41
42wApp.Selection.ParagraphFormat.LeftIndent = wApp.CentimetersToPoints(0)
43wApp.Selection.ParagraphFormat.FirstLineIndent = wApp.CentimetersToPoints(0.72/2*2)
44
45wApp.Selection.TypeParagraph
46wApp.Selection.Font.Bold = false
47wApp.Selection.ParagraphFormat.Alignment = 0
48
49
50wApp.Selection.TypeText "认真落实CHINA ASP为网友解难题,办实事精神,强化运行管理,优化网络;坚持以网管为龙头,以提高接通率为重点,做好运维工作,保证全网运行安全、高效、畅通。认真落实局内六十项奋斗目标,围绕效益工程、形象工程、福利工程,开动脑筋、解放思想,以改革为动力,推动维护、服务、管理工作更上台阶。" 
51wApp.Selection.TypeParagraph 
52
53rem 居 右
54wApp.Selection.TypeParagraph 
55wApp.Selection.Font.Bold = false 
56wApp.Selection.TypeText "一九九九年五月"
57wApp.Selection.TypeParagraph 
58
59end if
60
61<center><br><strong>数据处理完毕!</strong></center>
62
63<p>
64</p><div align='center'><center><input type=button class=buttonface name='cmdOK' onclick="window.returnValue=0;window.close();" value=" 确 定 " ></center></div>
65
66</BODY>
67</HTML>
68