searchresults.jsp
来自「spring的WEB开发插件,支持多状态WEB开发」· JSP 代码 · 共 53 行
JSP
53 行
<%@ include file="includeTop.jsp" %>
<div id="content">
<div id="insert">
<img src="images/webflow-logo.jpg"/>
</div>
<form action="phonebook.htm" method="post">
<table>
<tr>
<td>
Search Results
</td>
</tr>
<tr>
<td>
<hr>
</td>
</tr>
<tr>
<td>
<table border="1">
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>User Id</th>
<th>Phone</th>
</tr>
<c:forEach var="person" items="${persons}">
<tr>
<td>${person.firstName}</td>
<td>${person.lastName}</td>
<td>
<a href="phonebook.htm?_flowExecutionId=${flowExecutionId}&_eventId=select&id=${person.id}">
${person.userId}
</a>
</td>
<td>${person.phone}</td>
</tr>
</c:forEach>
</table>
</td>
</tr>
<tr>
<td class="buttonBar">
<input type="hidden" name="_flowExecutionId" value="${flowExecutionId}">
<input type="submit" class="button" name="_eventId_newSearch" value="New Search">
</td>
</tr>
</table>
</form>
</div>
<%@ include file="includeBottom.jsp" %>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?