?? productscategory.jsp
字號(hào):
<%@ page language="java" pageEncoding="gbk"%>
<%@ 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 'ProductsCategory.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" href="mm_health_nutr.css" type="text/css" />
</head>
<body bgcolor="#F4FFE4">
<table border="0" cellspacing="0" cellpadding="0" width="333">
<tr>
<td>
<img src="mm_spacer.gif" alt="" width="66" height="1" border="0" />
</td>
<td>
<br>
<fieldset>
<legend>
商品種類
</legend>
<table>
<tr>
<td>
<hr size="1px">
</td>
</tr>
<c:forEach var="row" items="${requestScope.ca}">
<tr>
<td>
<fieldset>
<a href="servlet/ProductsCategoryServlet?cid=${row.cid}"
Target="body"> <c:out value="${row.cname}"></c:out> </a>
</fieldset>
</td>
</tr>
<tr>
<td>
<hr size="1px">
</td>
</tr>
</c:forEach>
</table>
<hr size="1px" color="green">
</fieldset>
</td>
</tr>
</table>
</body>
</html>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -