用户注册



邮箱:

密码:

用户登录


邮箱:

密码:
记住登录一个月忘记密码?

发表随想


还能输入:200字
云代码 - html代码库

网页中打开word文档

2013-01-17 作者: 云代码会员举报

[html]代码库

前台————

01.<html>   
02.<head>   
03.<title>my youth</title>   
04.<meta http-equir="content-type"   
05.  
06.content="text/html";charset="gb2312">   
07.<mce:script language="Javascript"><!--  
08.   
09.function doword()   
10.{   
11.var WordApp=new ActiveXObject("Word.Application");   
12.WordApp.Application.Visible=true;   
13.var Doc=WordApp.Documents.Add("D://Program   
14.  
15.Files//Microsoft Office//Templates//2052//典雅型报告.dot",true);  
16.  
17.  
18.  
19.//下面是以只读方式打开  
20.  
21.   var openDocObj = new ActiveXObject("SharePoint.OpenDocuments.1");   
22.        openDocObj.EditDocument("http://localhost:9000/IAMS/document/aaa.doc");   
23.  
24.  
25.  
26.}   
27.// --></mce:script>   
28.</head>   
29.<body>   
30.<button onclick="doword()">打开Word模板</button>   
31.</body>   
32.</html>   
后台——————
01.public void OpenDoc()  
02.{  
03.    string rnd = Request.QueryString["rnd"].ToString();  
04.    string FilePath = Server.MapPath("pdf") + "//" + rnd;  
05.    Response.Clear();  
06.    Response.ClearHeaders();  
07.    Response.AppendHeader("Content-Disposition", "inline;filename=" + HttpUtility.UrlEncode(System.Text.Encoding.UTF8.GetBytes(rnd)));  
08.    Response.ContentType = "application/octet-stream";  
09.    Response.WriteFile(FilePath);  
10.    Response.Flush();  
11.    Response.End();  
12.}  


网友评论    (发表评论)

共1 条评论 1/1页

发表评论:

评论须知:

  • 1、评论每次加2分,每天上限为30;
  • 2、请文明用语,共同创建干净的技术交流环境;
  • 3、若被发现提交非法信息,评论将会被删除,并且给予扣分处理,严重者给予封号处理;
  • 4、请勿发布广告信息或其他无关评论,否则将会删除评论并扣分,严重者给予封号处理。


扫码下载

加载中,请稍后...

输入口令后可复制整站源码

加载中,请稍后...