InvokeMember打开Word文档另存为Html页如何先关闭Html再退出Word ?_html/css_WEB-ITnose

WBOY
发布: 2016-06-24 12:17:25
原创
1415 人浏览过

 public partial class CountyTown : System.Web.UI.Page
    {
          public string countyName = string.Empty; //乡镇名称
          public string documentFullName = string.Empty; //预案全称(包括后缀名)
          public string documentName = string.Empty; //预案名称
          
        protected void Page_Load(object sender, EventArgs e)
        {
        if (!IsPostBack)
        {
            try
            {
                //根据传递过来的乡镇名称获取到文件名称
                countyName = Request["space"];
                documentFullName = "江谭乡防台风和山洪灾害防治预案.docx";
                documentName = documentFullName.Substring(0,documentFullName.LastIndexOf('.'));
            }
            catch (Exception)
            {
                documentFullName = "";
            }
        }
        // 在此处放置用户代码以初始化页面 
        
        Application word = new Application();
        Type wordType = word.GetType();
        Documents docs = word.Documents; // 打开文件 
        Type docsType = docs.GetType();
        object fileName = Server.MapPath(@"~\UpLoad\") + documentFullName;
        Document doc = (Document)docsType.InvokeMember("Open",BindingFlags.InvokeMethod,null, docs,new Object[]{fileName, true, true }); // 转换格式,另存为 
       

        Type docType = doc.GetType();
        object saveFileName = Server.MapPath(@"\UpLoad\") +documentName + ".html";
        
        //string j="text/javascript";

       ClientScript.RegisterClientScriptBlock(GetType(), "", "<script><!--alert('" + saveFileName.ToString() + "')"); <br /> // --></script>");

        //保存HTML(报错:Word 无法保存此文件,因为它已在别处打开。)
         docType.InvokeMember("SaveAs",BindingFlags.InvokeMethod, null, doc, new object[] { 
saveFileName, WdSaveFormat.wdFormatHTML });
        // 退出 Word 
         wordType.InvokeMember("Quit",BindingFlags.InvokeMethod, null, word, null);
       
        Response.Redirect("~/Upload/" + documentName + ".html");
    }


回复讨论(解决方案)

你本地测试不要打开word文档,将打开的word文档关闭掉。

没有打开word文档?

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板