?? updatejsp.jsp~23~
字號:
<%@page contentType="text/html; charset=GBK"%>
<html>
<head>
<title>UpdateJsp</title>
</head>
<body bgcolor="#c0c0c0">
<%
session.setAttribute("id", "strid");
String strid = (String) request.getParameter("uid");
telbook.ShiTi shiti = telbook.SQL_jh.selectInfo(7);
%>
<form action="" name="form">
<table>
<tr>
<th>姓名:</th>
<th>電話號碼:</th>
</tr>
<tr>
<td align="center">
<input type="text" name="name" value="<%=shiti.getUname()%>"/>
</td>
<td align="center">
<input type="text" name="telephone" value="<%= shiti.getUtel()%>"/>
</td>
</tr>
<tr>
<td>
<input type="submit" value="提交"/>
<input type="reset" value="重置"/>
</td>
</tr>
</table>
</form>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -