本文介绍了使用listview下载存储在数据库中的MS word文档的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

亲爱的先生,



我有一些word文档存储在数据库中,我想点击列表视图链接按钮下载文件。



请发送代码



谢谢

Dear Sir,

I have some word documents stored in database,I want to download the document on click of list view link button.

Please send the code

Thank you

推荐答案

// Retrieve the file's content from your database.
byte[] fileBytes = ...

string fileName = "Download.docx";
this.Response.ClearContent();

// Use appropriate content type:
// DOC = 'application/msword'
// DOCX = 'application/vnd.openxmlformats-officedocument.wordprocessingml.document'
// ...
this.Response.ContentType = "application/vnd.openxmlformats-officedocument.wordprocessingml.document";

this.Response.AddHeader("Content-Disposition", "attachment; filename=" + fileName);
this.Response.OutputStream.Write(fileBytes, 0, fileBytes.Length);
this.Response.End();


这篇关于使用listview下载存储在数据库中的MS word文档的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 22:00