在Firefox中需要把filename 用双引号包起来,才能得到想要的名字,不然如果含有空格,会丢掉空格后面的部分。而IE会把空格转为_,因此也需要HttpUtility.UrlPathEncode方法处理下名字。如果Firefox中也用HttpUtility.UrlPathEncode处理名字,...
分类:
其他好文 时间:
2015-06-08 17:00:19
阅读次数:
171
下面是Python数据处理的题目说明与要求:
The attachment is a log file used to show running status of set-top-box, and each line in the file follows the format of “LineNumber + Time + ProcessName + (ProcessID) + Logs”,...
分类:
编程语言 时间:
2015-06-06 13:35:09
阅读次数:
210
PHP header发送各种类型文件及设置文件下载名 <?php header(‘Content-type: application/image/pjpeg’);//输出的类型 header(‘Content-Disposition: attachment; filename=”downloaded.jpg”‘); //下载显示的...
分类:
Web程序 时间:
2015-06-02 11:34:48
阅读次数:
152
1.header
header("Content-Type:application/vnd.ms-excel");
header("Content-Disposition:attachment;filename=sample.xls");
header("Pragma:no-cache");
header("Expires:0");
2.PHPExcel
http://www.codep...
分类:
Web程序 时间:
2015-05-27 12:18:14
阅读次数:
198
DECLARE
@tab char(1) = CHAR(9)
EXEC msdb.dbo.sp_send_dbmail
@profile_name = 'backupNotify',
@recipients = 'du_meng_016971@wuxiapptec.com',
@query = 'select cardno,badge,empname,empdep,s...
分类:
其他好文 时间:
2015-05-21 12:48:54
阅读次数:
248
前提是定义了background-image属性,然后用background-attachment来指明背景图的位置是固定于视口的,还是随着包含块移动的。可简单理解为定义背景图片随滚动轴的移动方式。取值:scrool:默认值,背景随页面滚动而移动,即背景和内容绑定。fixed:背景图相对于视口固定,...
分类:
其他好文 时间:
2015-05-19 18:49:00
阅读次数:
257
//定义计时器setInterval('GetDB()',1000);//获取代办任务functionGetDB(){$.ajax({type:"Get",dataType:"json",async:false,url:'/Ajax/Common/Attachment.ashx',data:'Han...
分类:
Web程序 时间:
2015-05-19 18:14:05
阅读次数:
155
Windows->Preferences->Java->Installed JREs->...(default)->Edit->Program Files\Java\jre1.8.0_45\lib\rt.jar->Source Attachment Configuration->External l...
分类:
系统相关 时间:
2015-05-18 18:23:18
阅读次数:
155
参考一:div#div1{position:fixed;top:0;left:0;bottom:0;right:0;z-index:-1;}div#div1>img{height:100%;width:100%;border:0;}参考二:background-attachment:fixed;参考...
分类:
其他好文 时间:
2015-05-18 12:34:06
阅读次数:
176
1.CSS背景属性background:作用是将背景属性设置在一个声明中。background-attachment:背景图像是否固定或者随着页面的奇遇部分滚动。background-color:设置元素的背景颜色。background-image:把图像设置为背景。background-posit...
分类:
Web程序 时间:
2015-05-12 14:58:47
阅读次数:
130