updatejsp.jsp~24~

来自「北大青鸟学生作品」· JSP~24~ 代码 · 共 36 行

JSP~24~
36
字号
<%@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(new Integer(strid).intValue());
%>
<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 + =
减小字号Ctrl + -
显示快捷键?