Response.AddHeader使用实例收集
2009-05-07 10:39:43 来源:WEB开发网文件下载,指定默认名
程序代码
Response.AddHeader("content-type","application/x-msdownload");
Response.AddHeader("Content-Disposition","attachment;filename=要下载的文件名.rar");
刷新页面
程序代码
Response.AddHeader "REFRESH", "60;URL=newpath/newpage.asp"
等同于客户机端<META>元素:
程序代码
<META HTTP-EQUIV="REFRESH","60;URL=newpath/newpage.asp">
页面转向
程序代码
Response.Status = "302 Object Moved"
Response.Addheader "Location", "newpath/newpage.asp"
等同于使用Response.Redirect方法:
程序代码
Response.Redirect "newpath/newpage.asp"
强制浏览器显示一个用户名/口令对话框
程序代码
Response.Status= "401 Unauthorized"
Response.Addheader "WWW-Authenticate", "BASIC"
强制浏览器显示一个用户名/口令对话框,然后使用BASIC验证把它们发送回服务器(将在本书后续部分看到验证方法)。
如何让网页不缓冲
程序代码
Response.Expires = 0
Response.ExpiresAbsolute = Now() - 1
Response.Addheader "PRagma","no-cache"
Response.Addheader "cache-control","private"
Response.CacheControl = "no-cache"
- ››使用脚本恢复WinXP系统的用户登录密码
- ››使用phpMyadmin创建数据库及独立数据库帐号
- ››使用Zend Framework框架中的Zend_Mail模块发送邮件...
- ››使用cout标准输出如何控制小数点后位数
- ››使用nofollow标签做SEO的技巧
- ››使用 WebSphere Message Broker 的 WebSphere Tra...
- ››使用SQL Server事件探查器做应用程序的性能分析
- ››使用SQL Server事件探查器分析死锁原因
- ››使用纯文本文件打造WCF服务
- ››使用 Dojo 开发定制 Business Space 小部件,第 4...
- ››使用 ADDRESS 与 INDIRECT函数查询信息
- ››使用 COLUMN函数编制单元信息
赞助商链接