首页 > Web开发 > 详细

JSP复习(part 4)

时间:2017-10-02 19:42:23      阅读:242      评论:0      收藏:0      [点我收藏+]

3.5.2 重定向网页

        使用response对象中的sendRedirect()方法实现一个重定向到另一个页面。

                      例如: response.sendRedirect(“”login_ok.jsp“”);

3.5.3页面定时刷新或自动跳转

        采用response对象的setHeader方法,实现页面的定时跳转或定时自刷新。

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

             (2)response.setHeader("refresh","10;URL=http:www.sohu.com“‘);

代码练习

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
 String path = request.getContextPath();
 String basePath = request.getScheme() + "://"
   + request.getServerName() + ":" + request.getServerPort()
   + path + "/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
 <head>
  <base href="<%=basePath%>">

  <title>response内置对象</title>

  <meta http-equiv="pragma" content="no-cache">
  <meta http-equiv="cache-control" content="no-cache">
  <meta http-equiv="expires" content="0">
  <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
  <meta http-equiv="description" content="This is my page">
  <!--
 <link rel="stylesheet" type="text/css" href="styles.css">
 -->

 </head>

 <body>
  <%
  //使用response对象的setHeader方法设置为每隔一秒刷新一次页面
  response.setHeader("refresh","1");
  //获取当前时间
  Date myDate = new Date();
   %>
   <h3>当前时间为:</h3>
   <%
   //将当前时间进行显示
   out.println(myDate.toLocaleString());
    %>
 </body>
</html>

JSP复习(part 4)

原文:http://www.cnblogs.com/frankzone/p/7622114.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!