listrefinedtopic.jsp

来自「Spring企业级开发下......电子书籍..............」· JSP 代码 · 共 31 行

JSP
31
字号
<%@ page language="java" contentType="text/html; charset=UTF-8"pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt_rt"%>
<html>
	<head>
		<title>
		<fmt:message key="site.title"/>
		</title>
	</head>
	<body>
		近日精华帖:
		<table>
			<c:forEach items="${topicList}" var="topic">
				<tr>
					<td>
						${topic.topicId}
					</td>
					<td>
						<c:url value="/showTopic.html?topicId=${topic.topicId}"
							var="showLink" />
						<a href="${editLink}">${topic.title}</a>
					</td>
					<td>
					   <fmt:formatDate value="${topic.createDate}" pattern="yyyy-MM-dd"/>
					</td>
				</tr>
			</c:forEach>
		 <table>
	</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?