码迷,mamicode.com
首页 > 其他好文 > 详细

response的setHeader的几种用法

时间:2014-07-10 15:53:26      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:java   html   htm   new   type   res   

<%@page contentType="text/html;charset=GBK" import="java.util.*" pageEncoding="GBK"%>

 

<% 

  response.setHeader("refresh","5");//第一种:每隔五秒钟页面自动刷新一次

  response.setHeader("refresh","5;url=index.jsp");//第二种:设置浏览器延时跳转

  Date now = new Date();

  out.print(now);

  //不缓存当前页面

  response.setHeader("Pragma","No-cache");

  response.setHeader("Cache-Control","no-cache");

%>

response的setHeader的几种用法,布布扣,bubuko.com

response的setHeader的几种用法

标签:java   html   htm   new   type   res   

原文地址:http://www.cnblogs.com/changshaxiaoxiao/p/3834975.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!