You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
362 B
15 lines
362 B
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
<html>
|
|
<head><title>添加学生信息</title></head>
|
|
<body>
|
|
|
|
<table>
|
|
<tr><td>ID</td><td>title</td></tr>
|
|
<c:forEach var="s" items="${xz }">
|
|
<tr>
|
|
<td>${s.id }</td>
|
|
<td>${s.title }</td>
|
|
</tr>
|
|
</c:forEach>
|
|
</table></body></html> |