📄 studentlist5.jsp
字号:
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<html>
<head>
<title>Student List5</title>
</head>
<body>
<h2 align="center">Student List5</h2>
<hr>
<table width="600px" align="center" border="1">
<tr>
<th>USER_NAME</th>
<th>PASSWORD</th>
<th>PROVINCE</th>
<th>GENDER</th>
</tr>
<c:forEach items="${studentList}" var="student" varStatus="status">
<tr>
<td>${status.index}|${status.count}|${status.first}|${status.last}|${student.userName}</td>
<td>${student.password}</td>
<td>${student.gender}</td>
<td>${student.province}</td>
</tr>
</c:forEach>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -