?? viewuser.jsp
字號:
<%@ page contentType="text/html; charset=gb2312" language="java" errorPage="../../error.jsp" %>
<%@ include file="../../jstl.inc"%>
<%@ taglib prefix="myfun" uri="http://hellking.com/function"%>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<LINK href="../../hellking.css" type=text/css rel=stylesheet>
</head>
<body>
<table align="center" bgcolor="#008800" border="0" cellspacing="2" cellpadding="5">
<tr bgcolor="#cccccc">
<td><b>ID</b></td>
<td><b>姓名 </b></td>
<td><b>電話 </b></td>
<td><b>地址 </b></td>
<td><b>郵編 </b></td>
<td><b>email </b></td>
<td><b>信用卡 </b></td>
<td><b>開戶銀行 </b></td>
<td><b>登錄次數 </b></td>
<td><b>最后登錄時間 </b></td>
</tr>
<c:catch var="myexception">
<sql:query var="query" dataSource="${jspdev}" sql="select * from user_info">
</sql:query>
<c:forEach var="row" items="${query.rows}">
<tr bgcolor="#FFFF88">
<td> ${row.userId}</td>
<td> ${row.name}</td>
<td> ${row.phone}</td>
<td> ?。?{row.state},市:${row.city},街道:${row.street}</td>
<td> ${row.zipCode}</td>
<td> ${row.email}</td>
<td> ${row.cardNumber}</td>
<td> ${row.cardType}</td>
<td> ${row.userLogCount}</td>
<td> ${row.userLastLogTime}</td>
</tr>
</c:forEach>
</c:catch>
${myexception}
</table>
</form>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -