.NET 动态向Word文档添加数据

简介:     本文章主要用于在网页上填写数据动态填入Word模板中使用  首先要准备一个Word模板,然后在需要插入数据的位置插入书签,这样可以确定在网页上填入的数据可以插入到Word文档相应的位置。   在项目中要声明 using Microsoft.

    本文章主要用于在网页上填写数据动态填入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(); 
        }
    }
}

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

  

 

目录
相关文章
|
6月前
mvc.net分页查询案例——DLL数据访问层(HouseDLL.cs)
mvc.net分页查询案例——DLL数据访问层(HouseDLL.cs)
|
17天前
|
SQL XML 关系型数据库
入门指南:利用NHibernate简化.NET应用程序的数据访问
【10月更文挑战第13天】NHibernate是一个面向.NET的开源对象关系映射(ORM)工具,它提供了从数据库表到应用程序中的对象之间的映射。通过使用NHibernate,开发者可以专注于业务逻辑和领域模型的设计,而无需直接编写复杂的SQL语句来处理数据持久化问题。NHibernate支持多种数据库,并且具有高度的灵活性和可扩展性。
36 2
|
3月前
|
开发框架 .NET 数据库连接
闲话 Asp.Net Core 数据校验(三)EF Core 集成 FluentValidation 校验数据例子
闲话 Asp.Net Core 数据校验(三)EF Core 集成 FluentValidation 校验数据例子
|
4月前
|
开发框架 JSON 前端开发
利用查询条件对象,在Asp.net Web API中实现对业务数据的分页查询处理
利用查询条件对象,在Asp.net Web API中实现对业务数据的分页查询处理
|
3月前
|
开发框架 前端开发 算法
分享 .NET EF6 查询并返回树形结构数据的 2 个思路和具体实现方法
分享 .NET EF6 查询并返回树形结构数据的 2 个思路和具体实现方法
|
3月前
|
SQL Oracle 关系型数据库
.NET 开源快捷的数据库文档查询和生成工具
【8月更文挑战第1天】推荐几款.NET开源数据库文档工具:1. DBDocumentor,支持多类型数据库,快速生成详尽文档;2. SqlDoc,界面简洁,自定义内容与格式;3. DBInfo,强大查询功能,支持多种导出格式。这些工具有效提升文档管理效率与质量。
|
4月前
|
SQL JavaScript 安全
基于.NET开源跨平台的文档管理系统
基于.NET开源跨平台的文档管理系统
127 0
|
6月前
|
开发框架 前端开发 .NET
福利来袭,.NET Core开发5大案例,30w字PDF文档大放送!!!
为了便于大家查找,特将之前开发的.Net Core相关的五大案例整理成文,共计440页,32w字,免费提供给大家,文章底部有PDF下载链接。
77 1
福利来袭,.NET Core开发5大案例,30w字PDF文档大放送!!!
|
6月前
|
存储 测试技术 计算机视觉
高维数据惩罚回归方法:主成分回归PCR、岭回归、lasso、弹性网络elastic net分析基因数据
高维数据惩罚回归方法:主成分回归PCR、岭回归、lasso、弹性网络elastic net分析基因数据
|
6月前
|
SQL 数据库
使用ADO.NET查询和操作数据
使用ADO.NET查询和操作数据