操作WORD配置說(shuō)明
引入:Word的對(duì)象庫(kù)文件“MSWORD.OLB”(word 2000為MSWORD9.OLB)
1.運(yùn)行Dcomcnfg.exe
2.組件服務(wù)――計(jì)算機(jī)――我的電腦――DCOM配置――找到microsoft word 文檔
3.點(diǎn)擊屬性
4.選擇“安全性”
5.選定“使用自定義訪(fǎng)問(wèn)權(quán)限”和“使用自定義啟動(dòng)權(quán)限”
6.分別編輯權(quán)限,添加Everyone(ASPNET,VS Developers,Debugger User)
7.選擇“身份標(biāo)識(shí)”,在選定“交互式用戶(hù)” 即可
8.在Web.config里加 <identity impersonate="true"/>
ASP.NET操作Word文檔一直是一個(gè)大家比較關(guān)心的話(huà)題,其實(shí)在ASP.NET里操作Word文檔一點(diǎn)也不難,大家只需按本文提示,就能輕輕松松操作Word文檔!
一、準(zhǔn)備工作
首先請(qǐng)確認(rèn)服務(wù)端已經(jīng)安裝了Office Word(以下將以O(shè)ffice XP為例),操作系統(tǒng)為win2000或XP,并且已配置好.NET的運(yùn)行環(huán)境及安裝VS.NET C#開(kāi)發(fā)環(huán)境后,我們就可以打開(kāi)VS.NET,并新建一個(gè)Visual C#項(xiàng)目>ASP.NET Web應(yīng)用程序,位置為“
http://localhost/word”。(如圖一)
二、引用Word對(duì)象庫(kù)文件
要操作Word,我們就需要Word的對(duì)象庫(kù)文件“MSWORD.OLB”(word 2000為MSWORD9.OLB),通常安裝了Office Word后,你就可以在office安裝目錄的Office10文件夾下面找到這個(gè)文件,當(dāng)我們將這個(gè)文件引入到項(xiàng)目后,我們就可以在源碼中使用各種操作函數(shù)來(lái)操作Word。具體做法是打開(kāi)菜單欄中的項(xiàng)目>添加引用>瀏覽,在打開(kāi)的“選擇組件”對(duì)話(huà)框中找到MSWORD.OLB后按確定即可引入此對(duì)象庫(kù)文件,vs.net將會(huì)自動(dòng)將庫(kù)文件轉(zhuǎn)化為DLL組件,這樣我們只要在源碼中創(chuàng)建該組件對(duì)象即可達(dá)到操作Word的目的!
三、Webform1.aspx.cs代碼
完成添加引用后,MSWORD.OLB已經(jīng)轉(zhuǎn)化為相關(guān)DLL文件并放置于項(xiàng)目的BIN目錄下了,這樣我們只需在源碼中創(chuàng)建該對(duì)象,并使用word庫(kù)文件內(nèi)置的操作函數(shù)即可輕松實(shí)現(xiàn)操作Word,Webform1.aspx.cs源碼如下:
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
namespace word
{
/// <summary>
/// Webform1 的摘要說(shuō)明。
/// </summary>
public class Webform1 : System.Web.UI.Page
{
protected System.Web.UI.WebControls.TextBox SaveAs;
protected System.Web.UI.WebControls.Button Button;
protected System.Web.UI.WebControls.Label Label2;
protected System.Web.UI.WebControls.Label Label1;
protected System.Web.UI.WebControls.Label result;
protected System.Web.UI.WebControls.TextBox wordText;
#region Web form Designer generated code
override protected void OnInit(EventArgs e)
{
//
// CODEGEN:該調(diào)用是 ASP.NET Web 窗體設(shè)計(jì)器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
/// <summary>
/// 設(shè)計(jì)器支持所需的方法 - 不要使用代碼編輯器修改
/// 此方法的內(nèi)容。
/// </summary>
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
public void Button_Click(object sender, System.EventArgs e)
{
Object Nothing=System.Reflection.Missing.value;
//取得Word文件保存路徑
object filename=@SaveAs.Text;
//創(chuàng)建一個(gè)名為WordApp的組件對(duì)象
Word.Application WordApp=new Word.ApplicationClass();
//創(chuàng)建一個(gè)名為WordDoc的文檔對(duì)象
Word.Document WordDoc=WordApp.Documents.Add(ref Nothing,ref Nothing,ref Nothing,ref Nothing);
//增加一表格
Word.Table table=WordDoc.Tables.Add(WordApp.Selection.Range,1,1,ref Nothing,ref Nothing);
//在表格第一單元格中添加自定義的文字內(nèi)容
table.Cell(1,1).Range.Text=wordText.Text;
//在文檔空白地方添加文字內(nèi)容
WordDoc.Paragraphs.Last.Range.Text="Wellcome To Aspxcn.Com";
//將WordDoc文檔對(duì)象的內(nèi)容保存為DOC文檔
WordDoc.SaveAs(ref filename,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing,ref Nothing);
//關(guān)閉WordDoc文檔對(duì)象
WordDoc.Close(ref Nothing, ref Nothing, ref Nothing);
//關(guān)閉WordApp組件對(duì)象
WordApp.Quit(ref Nothing, ref Nothing, ref Nothing);
//返回結(jié)果
result.Text="文檔路徑:<a href="/"+SaveAs.Text+"'>"+SaveAs.Text+"</a>(點(diǎn)擊鏈接查看)<br>生成結(jié)果:成功!";
}
private void Page_Load(object sender, System.EventArgs e)
{
}
}
}