首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

求ASP.NET操作word实例。100分解决方法

2012-01-19 
求ASP.NET操作word实例。。。。。100分求ASP.NET操作word实例。。。。。点击就打开WORD编辑完,点保存就保存到服务器

求ASP.NET操作word实例。。。。。100分
求ASP.NET操作word实例。。。。。
点击就打开WORD编辑完,点保存就保存到服务器上制定的文件夹下,文件名按时间,保证不重复。。

[解决办法]
最好能给个实例。。。
[解决办法]
UP
[解决办法]
LZ所期望的恐怕目前世界上还没有实例!也许你是开创者!
[解决办法]
这个问题应该不难。。。我见过别人用JAVA实现了。。。.NET应该不难
[解决办法]
自己顶起。。不让沉。。。
[解决办法]
用文本编辑器就行!像:freetextbox,htmlarea等等!
[解决办法]
必须的用到WORD
[解决办法]
CSDN上的人都吃中饭去了吗 ?
怎么没个高手来,看看
[解决办法]
日。。还真没人。会啊
[解决办法]
。。。来个人啊。。。。帮我顶两下。。。
[解决办法]
那随便给我asp.net操作word 的实例也行啊。。。。
[解决办法]
帮忙顶下了

我只会把表的内容导出到WORD 包括打印功能. 和操作EXECEL类似.
楼主说的这些不懂.
[解决办法]
如何在Web页面上直接打开、编辑、创建Office文档
http://blog.joycode.com/kaneboy/archive/2004/11/03/37889.aspx
http://edu.lzcg.com/Document/ASP/221223319.htm
[解决办法]
Word.ApplicationClass word = new Word.ApplicationClass();
Type wordType = word.GetType();
Word.Documents docs = word.Documents;
// 打开文件
Type docsType = docs.GetType();
object filename = "c:\\ ";
Word.Document doc = (Word.Document)docsType.InvokeMember( "Open ",System.Reflection.BindingFlags.InvokeMethod, null, docs, new Object[] {filename, true, true});
// 转换格式,另存为
Type docType = doc.GetType();
object saveFileName = Server.MapPath( "../ ") + "OfficeFile\\HTML\\ "+ "aa.html ";
//下面是Microsoft Word 9 Object Library的写法,如果是10,可能写成:
//docType.InvokeMember( "SaveAs ", System.Reflection.BindingFlags.InvokeMethod,null, doc, new object[]{saveFileName, Word.WdSaveFormat.wdFormatFilteredHTML});
///其它格式:
///wdFormatHTML
///wdFormatDocument
///wdFormatDOSText
///wdFormatDOSTextLineBreaks
///wdFormatEncodedText
///wdFormatRTF
///wdFormatTemplate
///wdFormatText
///wdFormatTextLineBreaks
///wdFormatUnicodeText
docType.InvokeMember( "SaveAs ", System.Reflection.BindingFlags.InvokeMethod,null, doc, new object[]{saveFileName, Word.WdSaveFormat.wdFormatHTML});
// 退出 Word
wordType.InvokeMember( "Quit ", System.Reflection.BindingFlags.InvokeMethod,null, word, null);

[解决办法]

ASP.NET操作Word文档一直是一个大家比较关心的话题,其实在ASP.NET里操作Word文档一点也不难,大家只需按本文提示,就能轻轻松松操作Word文档!
一、准备工作
首先请确认服务端已经安装了Office Word(以下将以Office XP为例),操作系统为win2000或XP,并且已配置好.NET的运行环境及安装VS.NET C#开发环境后,我们就可以打开VS.NET,并新建一个Visual C#项目> ASP.NET Web应用程序,位置为“http://localhost/word”。
二、引用Word对象库文件
要操作Word,我们就需要Word的对象库文件“MSWORD.OLB”(word 2000为MSWORD9.OLB),通常安装了Office Word后,你就可以在office安装目录的Office10文件夹下面找到这个文件,当我们将这个文件引入到项目后,我们就可以在源码中使用各种操作函数来操作Word。具体做法是打开菜单栏中的项目> 添加引用> 浏览,在打开的“选择组件”对话框中找到MSWORD.OLB后按确定即可引入此对象库文件,vs.net将会自动将库文件转化为DLL组件,这样我们只要在源码中创建该组件对象即可达到操作Word的目的!


三、Webform1.aspx.cs代码(vs.net2003默认新建页文件名都为webform1,在vs.net2005里已经换成了default1.aspx.cs了)
完成添加引用后,MSWORD.OLB已经转化为相关DLL文件并放置于项目的BIN目录下了,这样我们只需在源码中创建该对象,并使用word库文件内置的操作函数即可轻松实现操作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;
/**////这些引用都可以不要了.在vs.net 2005里的web.config已经添加了上述引用.
namespace word
...{
/**//// <summary>
/// Webform1 的摘要说明。
/// </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;
Web form Designer generated code#region Web form Designer generated code
override protected void OnInit(EventArgs e)
...{
//
// CODEGEN:该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
/**//// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </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;
//创建一个名为WordApp的组件对象
Word.Application WordApp=new Word.ApplicationClass();
//创建一个名为WordDoc的文档对象
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);
//在表格第一单元格中添加自定义的文字内容
table.Cell(1,1).Range.Text=wordText.Text;
//在文档空白地方添加文字内容
WordDoc.Paragraphs.Last.Range.Text= "Wellcome To Aspxcn.Com ";
//将WordDoc文档对象的内容保存为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);
//关闭WordDoc文档对象
WordDoc.Close(ref Nothing, ref Nothing, ref Nothing);
//关闭WordApp组件对象
WordApp.Quit(ref Nothing, ref Nothing, ref Nothing);
//返回结果
result.Text= "文档路径: <a href= "/ "+SaveAs.Text+ " '> "+SaveAs.Text+ " </a> (点击链接查看) <br> 生成结果:成功! ";
}

private void Page_Load(object sender, System.EventArgs e)
...{
}
}
}

热点排行