<%@ page import="java.util.Date"%>
<%@ page language="java" contentType="text/html; charset=utf-8"
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>Insert title here</title>
</head>
<body>
<h1>
<%
int s = new Date().getSeconds();
out.println(new Date());
%>
</h1>
<%--JSP注释 --%> <!-- HTML注释 -->
<table border="1" align="center">
<%
while ((s--) > 0) {
%>
<tr bgcolor="<%=s % 2 == 0 ? "F0F00F" : "F0FFA0"%>">
<td>姓名:<%=s%></td>
<td><%=s%></td>
</tr>
<%
}
%>
</table>
</body>
</html>