码迷,mamicode.com
首页 >  
搜索关键字:content-disposition    ( 186个结果
CSV文件导入数据库和导出数据库
实例一: <?php $filename = 'test'; //导出文件 header("Content-type: application/vnd.ms-excel; charset=utf-8"); Header("Content-Disposition: attachment; filena ...
分类:数据库   时间:2019-07-30 00:37:38    阅读次数:124
文件下载之后默认不打开实现方式
在常规的HTTP应答中,Content-Disposition 消息头指示回复的内容该以何种形式展示,是以内联的形式(即网页或者页面的一部分),还是以附件的形式下载并保存到本地。 作为消息主体中的消息头 在HTTP场景中,第一个参数或者是inline(默认值,表示回复中的消息体会以页面的一部分或者整 ...
分类:其他好文   时间:2019-07-03 10:41:02    阅读次数:105
文件下载之后默认不打开实现方式
在常规的HTTP应答中,Content-Disposition 消息头指示回复的内容该以何种形式展示,是以内联的形式(即网页或者页面的一部分),还是以附件的形式下载并保存到本地。 作为消息主体中的消息头 在HTTP场景中,第一个参数或者是inline(默认值,表示回复中的消息体会以页面的一部分或者整 ...
分类:其他好文   时间:2019-07-03 10:32:28    阅读次数:105
ASP.NET中将网页HTML源码保存到Excel下载
下边内容是关于ASP.NET中将网页HTML保存到Excel下载的内容。 Response.Clear(); Response.Buffer= true; Response.AppendHeader("Content-Disposition","attachment;filename="+DateT ...
分类:Web程序   时间:2019-01-17 14:07:10    阅读次数:197
【转】正确处理浏览器在下载文件时HTTP头的编码问题(Content-Disposition)
最近在做项目时遇到了一个 case :需要实现一个强制在浏览器中的下载功能(即强制让浏览器弹出下载对话框),并且文件名必须保持和用户之前上传时相同(可能包含非 ASCII 字符)。 前一个需求很容易实现:使用 HTTP Header 的 Content-Disposition: attachment ...
分类:Web程序   时间:2019-01-14 01:03:27    阅读次数:245
HTML转EXCEL的方法
1 private void ToExcel(string html) 2 { 3 4 Response.ContentType = "application/force-download"; 5 Response.AddHeader("content-disposition", 6 ... ...
分类:Web程序   时间:2019-01-07 10:40:30    阅读次数:554
php下载文件添加header响应头
header('Content-type:application/octet-stream'); header('Content-Disposition:attachment;filename="'.basename($file).'"'); header('Content-Length:'.fil ...
分类:Web程序   时间:2018-12-31 20:24:50    阅读次数:244
java EE : http 协议响应头部信息验证
一 location :***** 302 重定向 二 refresh :3;url=index.jsp 浏览器自动刷新 三 content-type: image/png 告知浏览器调用哪个模块打开,比如:显示图片、显示 html 信息 四 Content-Disposition :attachm ...
分类:编程语言   时间:2018-10-17 14:50:13    阅读次数:184
PHP 导出excel 数据量大时
public function ceshiexcel1(){ set_time_limit(0); $filename = '病毒日志'; header('Content-Type: application/vnd.ms-excel'); header('Content-Disposition: a... ...
分类:Web程序   时间:2018-08-15 13:06:41    阅读次数:186
golang解析http multipart/form的三种方式
The content type "multipart/form-data" should be used for submitting forms that contain files, non-ASCII data, and binary data.Each part is expected to contain:a "Content-Disposition&qu
分类:Web程序   时间:2018-08-09 17:28:25    阅读次数:768
186条   上一页 1 2 3 4 5 ... 19 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!