?? news.jsp
字號:
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic" %>
<html>
<head>
<title>JSP for newsForm form</title>
</head>
<body>
<table border="1">
<tbody>
<tr>
<td>
News Date
</td>
<td>
News Title
</td>
</tr>
<logic:iterate name="newsForm" property="newss" id="news">
<tr>
<td>
<bean:write name="news" property="date" />
</td>
<td>
<html:link action="newsDetail.do" paramName="news"
paramProperty="id" paramId="id"><bean:write name="news" property="title" /></html:link>
</td>
</tr>
</logic:iterate>
<logic:notPresent name="news">
<tr>
<td colspan="5">
No news found.
</td>
</tr>
</logic:notPresent>
</tbody>
</table>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -