回 帖 发 新 帖 刷新版面

主题:初学jsp请叫高手!

我们上jsp课,老师给我们留了这样一道题:编写程序实现网页显示格式为word格式,在页面中显示系统时间,并每隔30秒刷新一次。我折腾了半天没弄出来,想请教下大哥大姐!谢谢!

回复列表 (共2个回复)

沙发

我找到这个`~我也是菜鸟..你看下有没有用~~
            // resp.Charset = "utf-8"

            // resp.AddFileDependency(FileName)

            // resp.ContentType = "Text/HTML"

            //resp.ContentType = "application/vnd.ms-excel";

            //resp.AppendHeader("Content-Type", "text/html; charset=gb2312");

板凳

我这个是3秒刷新的,你要是要30秒<%response.setHeader("Refresh","30");%>  这里改一下即可




<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<%@page import="java.util.Date"%>

<!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 >

<%response.setHeader("Refresh","3");%>  

    <h1>Time show</h1>
    
    <%
    
    out.println("Now the time is :");
    out.print(new Date());
      %>
    <%--
    <c:if test="${param.sayHello}">
        <!-- Let's welcome the user ${param.name} -->
        Hello ${param.name}!
    </c:if>
    --%>
 
    </body>
</html>

我来回复

您尚未登录,请登录后再回复。点此登录或注册