⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 listrefinedtopic.jsp

📁 Spring企业级开发下......电子书籍..............
💻 JSP
字号:
<%@ 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -