经常可以看到点击一个文件,然后就可以下载。这个功能在php中实现可以通过下面的代码:if(is_file($file)){ header("Content-Type: application/force-download"); header("Content-Disposition: a...
分类:
Web程序 时间:
2014-09-28 02:02:20
阅读次数:
202
[csharp]
view plaincopyprint?
protected
void btn_ToExcel_Click(object sender, EventArgs e)
{ Response.ClearContent(); Response.AddHeader("content-disposition",
"attac...
分类:
Web程序 时间:
2014-09-26 06:29:18
阅读次数:
260
protected void Button1_Click(object sender, EventArgs e)
{
Response.ClearContent();
Response.AddHeader("content-disposition", "attachment; filename=MyExcelFile.xls");
Respo...
分类:
Web程序 时间:
2014-09-19 12:00:55
阅读次数:
170
protected void btn_ToExcel_Click(object sender, EventArgs e)
{
Response.ClearContent();
Response.AddHeader("content-disposition", "attachment; filename=MyExcelFile.xls");
R...
分类:
Web程序 时间:
2014-09-19 12:00:35
阅读次数:
219
从IIS或者Tomcat之类的Web服务器通过二进制流下载文件时(比如通过设置Header为Content-disposition:inline),如果被下载的文件是Office2007的dotx,docx,pot等后缀的时候,下载对话框中的图标会变成ZIP的,相应的文件名也会成为zip为扩展后缀的文件。其实出现这样的情况,是由..
分类:
其他好文 时间:
2014-09-12 02:28:43
阅读次数:
154
(一)文件下载,指定默认名Response.AddHeader("content-type","application/x-msdownload");Response.AddHeader("Content-Disposition","attachment;filename = 要下载的文件名.后缀名...
分类:
其他好文 时间:
2014-09-10 14:02:00
阅读次数:
201
一、作用: 1)希望某类或者某已知MIME类型的文件(比如:*.gif;*txt;*.htm)能够在访问时弹出"文件下载对话框" 2)希望客户端下载时以指定文件名显示 3)希望某文件直接显示而不是弹出文件下载对话框二、使用语句: response.setHeader("Content-dis...
分类:
其他好文 时间:
2014-09-06 09:40:52
阅读次数:
215
function outputCsv($data, $filename = 'file.csv') {//输出文件,下载文件 header('Content-Type:application/force-download'); header("content-Disposition:filename...
分类:
Web程序 时间:
2014-08-27 12:32:57
阅读次数:
191
11.1、文件下载概述
1、将响应的内容类型设置为文件的内容类型。标头Content-type用来规定实体主体中的数据类型,包含媒体类型和子类型标识符。
2、添加一个名为Content-Disposition的HTTP响应头,给它赋值attachment;filename=filename,这里的fileName是指在文件下载对话框中显示出来的默认文件名。它通常与文件名相同,但是也可以不同。
...
分类:
其他好文 时间:
2014-08-26 19:42:56
阅读次数:
217
public function test(){ header("Content-type:application/vnd.ms-excel"); header("Content-Disposition:attachment;filename=export_dat...
分类:
Web程序 时间:
2014-08-26 17:10:26
阅读次数:
700