HTML: ASP response.expires=0 response.addHeader("pragma","no-cache") response.addHeader("Cache-Control","no-store, must-revalidate") PHP header("E...
分类:
Web程序 时间:
2014-07-07 17:48:45
阅读次数:
267
所有问题,都是自己遇到过的。 但内容,有一半是自己写的,也有一半是复制过来。 所以,写成原创还请原谅1. ListView添加标题后(addHeader())后,使用listView.getAdapter获取的对像是被Header封装后的HeaderViewListAdapter对像.所以,为了获取...
分类:
移动开发 时间:
2014-06-28 12:14:44
阅读次数:
285
1 document.cookie这种写法读取cookie,单独访问页面是没有问题的,但是放在iframe里面访问就会出现问题,IE下会不起作用2 解决办法:page_load中添加一句Response.AddHeader("P3P", "CP=CAO PSA OUR")3IE会自觉的把IFRAME...
分类:
其他好文 时间:
2014-06-26 21:15:21
阅读次数:
329
在ASP中用程序控制弹出NTLM验证窗口
简介: 可以弹出NT验证窗口,而不管目录是否允许匿名访问,很好用的一段代码。
作者:亚豪 EMAIL: yahao@bigfoot.com 下载或访问
Response.Status = "401 Unauthorized"
Response.AddHeader "WWW-Authenticate","NTLM"
response...
分类:
Web程序 时间:
2014-05-10 04:35:01
阅读次数:
314
publicvoidDownLoad(stringwordcode,stringwordname,stringwordcopyright)
{
stringoutfn="p_w_upload;filename={0}.txt";
Response.ContentType="application/txt;charset=GB2312";
Response.AddHeader("Content-Disposition",string.Format(outfn,wordcode));
Response.Write..
分类:
其他好文 时间:
2014-05-08 16:50:54
阅读次数:
269