?? jsp2_xianshi.jsp~59~
字號:
<%@page contentType="text/html; charset=GBK"%>
<%request.setCharacterEncoding("gbk");%>
<%
session.setAttribute("");
%>
<html>
<head>
<title>詳細信息</title>
</head>
<body>
<form action="">
<div align="center">
<h1>
<font color="#3366FF">詳細信息</font>
</h1>
</div>
<table bgcolor="#FF66FF" border="1" align="center">
<tr>
<td width="123" align="center">編號</td>
<td width="123" align="center">姓名</td>
<td width="123" align="center">電話號碼</td>
<td width="123" align="center">
<a href="jsp1_jiemian.jsp">插入電話號碼</a>
<br />
<a href="DeleteAll.jsp?ok=<%=1%>">刪除全部信息 </a>
</td>
</tr>
<%
java.util.List list = telbook.SQL_jh.selTel();
for (int i = 0; i < list.size(); i++) {
telbook.ShiTi shiti = (telbook.ShiTi) list.get(i);
%>
<tr>
<td width="123" align="center"><%=shiti.getUid()%> </td>
<td width="123" align="center"><%=shiti.getUname()%> </td>
<td width="123" align="center"><%=shiti.getUtel() %> </td>
<td width="123" align="center">
<a href='UpdateJsp.jsp?uid=<%=shiti.getUid()%>'>[修改]</a>
<a href="DeleteJsp.jsp?uid=<%=shiti.getUid()%>">[刪除]</a>
</td>
</tr>
<%}%>
</table>
</form>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -