资源简介
1、预览方式:将word文件转换成html文件然后预览html文件
2、预览word文件:需要引入Interop.Microsoft.Office.Interop.Word.dll(Com组件)
3、预览Excel文件:需要引入Interop.Microsoft.Office.Interop.Excel.dll(Com组件,Microsoft Excel 15.0(or other version) Object Library)
4、PDF文件直接嵌入到浏览器中进行查看,无需转换
5、文本文件直接嵌入到浏览器进行查看,无需转换
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class _Default : System.Web.UI.Page
{
string outputDirPath = @“D:\文件\“; //Word和Excel转换成Html,Html文件存放的位置
protected void Page_Load(object sender EventArgs e)
{
}
protected void btnWord_Click(object sender EventArgs e)
{
string filePath = Server.MapPath(“~“) + @“\DemoFiles\Test.docx“;
WordPreview.Priview(this filePath outputDirPath);
}
protected void btnExcel_Click(object sender EventArgs e)
{
string filePath = Server.MapPath(“~“) + @“\DemoFiles\Test.xlsx“;
ExcelPreview.Priview(this filePath outputDirPath);
}
protected void btnP
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2013-12-13 13:56 FilePreviewInBrowser\
目录 0 2013-12-13 13:56 FilePreviewInBrowser\App_Code\
文件 1757 2013-12-13 11:53 FilePreviewInBrowser\App_Code\ExcelPreview.cs
文件 651 2013-12-13 13:28 FilePreviewInBrowser\App_Code\PDfPreview.cs
文件 697 2013-12-13 14:08 FilePreviewInBrowser\App_Code\TextFilePreview.cs
文件 3117 2013-12-13 11:16 FilePreviewInBrowser\App_Code\WordPreview.cs
目录 0 2013-12-13 13:57 FilePreviewInBrowser\Bin\
文件 1622016 2013-12-13 13:57 FilePreviewInBrowser\Bin\Interop.Microsoft.Office.Interop.Excel.dll
文件 933888 2013-12-13 13:57 FilePreviewInBrowser\Bin\Interop.Microsoft.Office.Interop.Word.dll
文件 987 2013-12-13 14:06 FilePreviewInBrowser\Default.aspx
文件 1206 2013-12-13 14:06 FilePreviewInBrowser\Default.aspx.cs
目录 0 2013-12-13 14:22 FilePreviewInBrowser\DemoFiles\
文件 16239 2013-12-13 14:03 FilePreviewInBrowser\DemoFiles\Test.docx
文件 54078 2011-01-09 14:43 FilePreviewInBrowser\DemoFiles\Test.pdf
文件 1263 2013-12-13 14:24 FilePreviewInBrowser\DemoFiles\Test.txt
文件 10915 2013-12-13 14:04 FilePreviewInBrowser\DemoFiles\Test.xlsx
文件 458 2013-12-13 14:01 FilePreviewInBrowser\Readme.txt
文件 559 2013-12-13 13:57 FilePreviewInBrowser\web.config
相关资源
- C# NPOI生成word插入图片和表格
- C# 5.0 in a Nutshell 5th Edition.pdf
-
C# 6.0 and the .NET 4.6 fr
amework(7th). - Professional+DevExpress+ASP.NET+Controls.pdf
- C# 6.0 in a Nutshell.pdf
- aspose包括Aspose.words、Aspose.Cells、Aspo
- Essential C# 7.0
- C#中用三种方法打印PDF文档
- 通用ASP.NET Core NPOI导出复杂Word、Exce
- 免费版 .NET PDF查看组件-Spire.Pdfviewer
- 《C#入门经典第五版》高清完整版带目
- C#与.NET程序员面试宝典_.pdf
- 免费PDF控件Spire.PDF
- ASP.NET MVC Json表格数据 为Excel
- professional C# 3rd edition 书 PDF版本 + 源代
- Programming C# 5.0-Building Windows 8 无水印
- ASP.NET开发人员手册(pdf)电子书
- c#高级编程(第10版) 非扫描 中文 高
- Asp.net C#生成pdf文件
- 深入理解C# 高清 pdf
- ASP.NET MVC4 Web 编程.422页.高清完整版
- C# excel处理源码
- C#项目开发案例全程实录(第2版).
- 精通C#游戏编程.pdf
- Learning hard C#学习笔记pdf及源码
- AutoCAD VBA&VB;.NET开发基础与教程 C# PD
- C# 将office,PDF文件转换为SWF文件
- 《C#入门经典(第7版)》中英文PDF书
- 精通C#与.NET4.0数据库开发.pdf
- ASP.NET程序设计基础教程第2版
评论
共有 条评论