7-17 1、response中的 addHeader 如果没有则添加,如果已经有了就保持原来的值, setHeader 如果没有则添加,如果有了则更新 response.setHeader("content-disposition", "attachment;filename="+fileName ...
分类:
其他好文 时间:
2017-07-17 11:07:52
阅读次数:
129
CSS 背景 CSS 背景属性用于定义HTML元素的背景。 CSS 属性定义背景效果: background-color background-image background-repeat background-attachment background-position background-c ...
分类:
Web程序 时间:
2017-07-13 21:46:43
阅读次数:
175
PHP连接Memcached 先安装php的memcache扩展 # wget http://ip/data/attachment/forum/memcache-2.2.3.tgz# tar zxf memcache-2.2.3.tgz # cd memcache-2.2.3# /usr/local ...
分类:
Web程序 时间:
2017-07-12 13:41:42
阅读次数:
199
protected void btn_ToExcel_Click(object sender, EventArgs e) { Response.ClearContent(); Response.AddHeader("content-disposition", "attachment; filenam ...
分类:
Web程序 时间:
2017-06-27 23:36:45
阅读次数:
265
backround-attachment,背景图像是否固定或者随着页面的其余部分滚动,默认值为scroll。 ...
分类:
Web程序 时间:
2017-06-25 11:04:52
阅读次数:
161
第一次debug总是出现下图问题,提示我没加源码。。。 The source attachment does not contain the source for the file ... 解决方法:先跳过所有断点,让服务启动成功。再设置断点调试。 ...
分类:
Web程序 时间:
2017-06-20 14:50:17
阅读次数:
154
//设置Content-Disposition response.setHeader("Content-Disposition", "attachment;filename="+docName); //读取文件 InputStream in = new FileInputStream(fullFil ...
分类:
其他好文 时间:
2017-06-16 11:28:24
阅读次数:
101
protected void Button1_Click(object sender, EventArgs e) { Response.ClearContent(); Response.AddHeader("content-disposition", "attachment; filename=My ...
分类:
Web程序 时间:
2017-06-14 20:07:56
阅读次数:
216
background 一个声明中设置所有的背景属性。 background-attachment 设置背景图像是否固定或者随着页面的其余部分滚动。 background-color 设置元素的背景颜色。 background-image 设置元素的背景图像。 background-position ...
分类:
Web程序 时间:
2017-06-12 00:52:34
阅读次数:
308
widthheightbackground color 背景颜色background image 背景图片 background repeat 背景图片平铺background position 背景图片位置 top bottom left right background-attachment 背 ...
分类:
其他好文 时间:
2017-06-10 21:36:24
阅读次数:
193