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