摘要:
1.建立word模板文件 person.dot2.建立web应用程序 加入Microsoft.Office.Interop.Word引用3.相关示例代码======================== 1.建立word模板文件 person.dot 用书签 标示相关字段的填充位置 2.建立web应用程序 加入Microsoft.Office.Interop.Word引用 具体添加引用请参看 ... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using Microsoft.Office.Interop.Excel;using... 阅读全文
摘要:
用时候当系统文件关联直接下载的话会调用程序打开,或者想验证后才能给用户下载,那么可以用这个方法实现 private void FileDown(string strPath) { System.IO.FileInfo file = new System.IO.FileInfo(strPath); if (file.Exists) { ... 阅读全文