本文介绍了asp.net中文档查看器的所有类型(pdf,excel,word,txt..etc)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我开发了一个网站,用于查看存储在数据库中的不同类型的文档。并建议我将在浏览器中的不同选项卡中查看所有类型而不下载...
建议免费文件viwer的一些链接...
或你有一些项目经验...建议我来解决我的问题。 ..
谢谢...
i m developing a web site for viewing document of different types stored in database..and suggested that i will view all types in a different tab in browser with out downloading...
suggested some link for free document viwer ...
or u have some project experience on this ...suggest me to over come my problem...
thank...
推荐答案
var fileInfo = new FileInfo(fileFullName);
string fileName = Path.GetFileName(fileFullName);
HttpContext.Current.Response.Clear();
HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment; filename=" + fileName);
HttpContext.Current.Response.AddHeader("Content-Length", fileInfo.Length.ToString());
HttpContext.Current.Response.ContentType = "application/octet-stream";
HttpContext.Current.Response.Flush();
HttpContext.Current.Response.WriteFile(fileFullName);
HttpContext.Current.Response.End();
}
此代码将下载任何文件
this code will download any file
这篇关于asp.net中文档查看器的所有类型(pdf,excel,word,txt..etc)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!