listperson.jsp

来自「J2EE 项目各个技术的源码」· JSP 代码 · 共 36 行

JSP
36
字号
<%@page contentType="text/html"%><%@page pageEncoding="UTF-8"%><%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"   "http://www.w3.org/TR/html4/loose.dtd"><html>    <head>        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">        <title>List Of Persons</title>    </head>    <body>    <h1>List of Persons currently in Database</h1>    <table id="personListTable" border="3"><tr >    <th bgcolor=>ID</th>    <th bgcolor=>FirstName</th>    <th bgcolor=>LastName</th></tr><c:forEach var="person" begin="0" items="${requestScope.personList}"><tr>    <td>${person.id}&nbsp;&nbsp;</td>     <td>${person.firstName}&nbsp;&nbsp;</td>     <td>${person.lastName}&nbsp;&nbsp;</td> </tr> </c:forEach></table><a href="CreatePerson.jsp"><strong>Create a Person Record</strong></a></body></html>

⌨️ 快捷键说明

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