<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%
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>My JSP 'Jiujiu.jsp' starting page</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">
-->
<style type="text/css">
.even{background-color:#b66;}
.odd{background-color:#e77;}
td:hover{background-color:#AAA;}
</style>
</head>
</head>
<body>
<table width="500">
<c:forEach begin="1" end="9" varStatus="i" >
<tr class="${(i.count%2!=0)?'even':'odd'}">
<c:forEach begin="1" end="${i.count}" varStatus="j">
<td>
${j.count}*${i.count}=${i.count*j.count}
</td>
</c:forEach>
</tr>
</c:forEach>
</table>
</body>
</html>