📄 usermessage.jsp
字号:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ include file="../common/taglibs.jsp" %><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head>
<%@ include file="../common/header.jsp" %><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>用户信息</title></head><body>
<%@ include file="../common/menu.jsp" %>
<table align="center">
<tr>
<td>
<app:title inputTitle="显示用户信息"></app:title>
</td>
</tr>
<tr>
<td bgcolor="#00ff00"><b>id</b></td>
<td bgcolor="#00ff00"><b>userName</b></td>
<td bgcolor="#00ff00"><b>password</b></td>
</tr>
<c:forEach var="user" items="${result}">
<tr bgcolor="#EEEfff">
<td>
<c:out value="${user.id}"></c:out>
</td>
<td>
<c:out value="${user.userName}"></c:out>
</td>
<td>
<c:out value="${user.password}"></c:out>
</td>
</tr>
</c:forEach>
<tr>
<td>
<c:out value="${describe}"></c:out>
</td>
</tr>
</table>
<%@ include file="../common/footer.jsp" %>
</body></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -