您现在的位置: 365建站网 > 365文章 > JSP中forward用法

JSP中forward用法

文章来源:365jz.com     点击数:948    更新时间:2009-10-04 11:14   参与评论

1.首页(填写姓名)(可选,表单post到time.jsp即可):

2.判断时间forward到不同页面:

time.jsp:

<%--
    Document   : index
    Created on : 2009-10-3, 15:48:00
    Author     : lucifer
--%>

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">
<%@page import="java.util.Date" %>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>JSP Page</title>
    </head>
    <body>
        <%
               Date dat =
                       new Date();
               if(dat.getHours() <= 12){
                    %>
                    <jsp:forward page="AmGreeting.jsp"/>
         <%}
               else{
                    %>
                    <jsp:forward page="PmGreeting.jsp"/>
                    <%}
         %>
    </body>
</html>

3.如果是早上:

AmGreeting.jsp:

<%--
    Document   : AmGreeting
    Created on : 2009-10-3, 16:00:10
    Author     : lucifer
--%>

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">

<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>JSP Page</title>
    </head>
    <body>
        <h1>Good Morning! </h1>
        <%
               String name = request.getParameter("userName");
               out.println(name);
         %>
         !!!
    </body>
</html>

如果是下午:

PmGreeting.jsp:

<%--
    Document   : AmGreeting
    Created on : 2009-10-3, 16:00:10
    Author     : lucifer
--%>

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">

<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>JSP Page</title>
    </head>
    <body>
        <h1>Good Afternoon! </h1>
        <%
               String name = request.getParameter("userName");
               out.println(name);
         %>
         !!!
    </body>
</html>

如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛

发表评论 (948人查看0条评论)
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
昵称:
最新评论
------分隔线----------------------------

快速入口

· 365软件
· 杰创官网
· 建站工具
· 网站大全

其它栏目

· 建站教程
· 365学习

业务咨询

· 技术支持
· 服务时间:9:00-18:00
365建站网二维码

Powered by 365建站网 RSS地图 HTML地图

copyright © 2013-2024 版权所有 鄂ICP备17013400号