博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
.NET 动态向Word文档添加数据
阅读量:5157 次
发布时间:2019-06-13

本文共 4367 字,大约阅读时间需要 14 分钟。

    本文章主要用于在网页上填写数据动态填入Word模板中使用

  首先要准备一个Word模板,然后在需要插入数据的位置插入书签,这样可以确定在网页上填入的数据可以插入到Word文档相应的位置。

   在项目中要声明 using Microsoft.Office.Interop.Word 类

后台代码:

 

     protected void btnPrint_Click(object sender, EventArgs e)          {         string path = Server.MapPath("~\\UploadFiles\\");           //解决方案下的文件夹            string templatePath = path + "VATInvoiceDocument.doc";      //模板            WordOp wop = new WordOp();                                  //实例化WordOp类            wop.OpenTempelte(templatePath);            wop.FillLable("gongsimingcheng", conType);            wop.FillLable("huming", this.txtAccountName.Value);            wop.FillLable("shuihao", this.txtDutyPparagraph.Value);            wop.FillLable("kaihuhang", this.txtBankAccount.Value);            wop.FillLable("zhanghao", this.txtAccounts.Value);            wop.FillLable("dizhi", this.txtAddress.Value);            wop.FillLable("dianhua", this.txtTelephone.Value);            wop.FillLable("kaipiaodaima", this.txtBilingCode.Value);             wop.FillLable("shenqingrenyuan", this.txtApplicant.Value);            wop.FillLable("lianxidianhua", this.txtContact.Value);            wop.FillLable("nian", this.txtYearL.Value);            wop.FillLable("yue", this.txtMonthL.Value);            wop.FillLable("ri", this.txtDaysL.Value);            wop.SaveAs(path + "VATInvoiceDocument1.doc", true);         //将要保存到的Word文档            wop.Quit();            Response.Redirect(@"/UploadFiles/VATInvoiceDocument1.doc"); //做个跳转用于下载.         }

 

WordOp类的代码实现:

using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlControls;using Microsoft.Office.Interop.Word;using System.IO;namespace CCIR.CorpWebSite.WebPage{    public class WordOp    {        public WordOp()        {            //             // TODO: 在此处添加构造函数逻辑             //         }        private ApplicationClass WordApp;        private Document WordDoc;        private static bool isOpened = false;//判断word模版是否被占用         public void SaveAs(string strFileName, bool isReplace)        {            if (isReplace && File.Exists(strFileName))            {                File.Delete(strFileName);            }            object missing = Type.Missing;            object fileName = strFileName;            WordDoc.SaveAs(ref fileName, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing,            ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing);        }        //定义一个Word.Application 对象         public void activeWordApp()        {            WordApp = new ApplicationClass();        }        public void Quit()        {            object missing = System.Reflection.Missing.Value;            WordApp.Application.Quit(ref missing, ref missing, ref missing);            isOpened = false;        }        //基于模版新建Word文件         public void OpenTempelte(string strTemppath)        {            object Missing = Type.Missing;            //object Missing = System.Reflection.Missing.Value;             activeWordApp();            WordApp.Visible = false;            object oTemplate = (object)strTemppath;            try            {                while (isOpened)                {                    System.Threading.Thread.Sleep(500);                }                WordDoc = WordApp.Documents.Add(ref oTemplate, ref Missing, ref Missing, ref Missing);                isOpened = true;                WordDoc.Activate();            }            catch (Exception Ex)            {                Quit();                isOpened = false;                throw new Exception(Ex.Message);            }        }        public void FillLable(string LabelId, string Content)        {            //打开Word模版             // OpenTempelte(tempName); //对LabelId的标签进行填充内容Content,即函件题目项             object bkmC = LabelId;            if (WordApp.ActiveDocument.Bookmarks.Exists(LabelId) == true)            {                WordApp.ActiveDocument.Bookmarks.get_Item(ref bkmC).Select();            }            WordApp.Selection.TypeText(Content);            //SaveAs(saveAsFileName);             //Quit();         }    }}

  本文用于以后操作时使用,如有不足指出望读者指出

  

 

转载于:https://www.cnblogs.com/swjian/p/6811532.html

你可能感兴趣的文章
Nginx 0.8.x + PHP 5.2.13(FastCGI)搭建胜过Apache十倍的Web服务器(第6版)
查看>>
反应堆模式最牛的那篇论文--由solidmango执笔翻译
查看>>
洛谷2661 信息传递 三倍经验?
查看>>
nginx php-fpm 输出php错误日志
查看>>
代码还原,IDA中使用的宏
查看>>
洛谷 P3378 【模板】堆
查看>>
置顶信息[置顶] 常用日常英语缩写
查看>>
函数矩阵OpenGL中glFrustum()和gluPerspective()的相互转换
查看>>
iOS中用到的唯一标示符
查看>>
hadoop3.1.0集群搭建
查看>>
H5——弹性盒
查看>>
systemtap notes
查看>>
SDN
查看>>
宝成科技
查看>>
linux ----Inode的结构图
查看>>
Linux lsof命令使用小结
查看>>
C++ 虚函数表解析
查看>>
THD 变量存入threads中
查看>>
基于visual Studio2013解决C语言竞赛题之1012连接字符串
查看>>
ZJOI 2014 星系调查(推导)
查看>>