adduser.jsp~2~

来自「这是一个图书馆管理系统的jsp代码」· JSP~2~ 代码 · 共 69 行

JSP~2~
69
字号
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>adduser</title>
</head>

<body>
<table width="80%" border="0" align="center" cellpadding="4" cellspacing="1">
  <tr>
    <td width="33%" align="right">ID:</td>
    <td><form name="form1" method="post" action="">
      <input name="adduserid" type="text" id="adduserid" size="15" maxlength="12">
    </form></td>
  </tr>
  <tr>
    <td width="33%" align="right">Course:</td>
    <td><form name="form2" method="post" action="">
      <input name="addusercourse" type="text" id="addusercourse" size="10" maxlength="8">
    </form></td>
  </tr>
  <tr>
    <td width="33%" align="right">Number:</td>
    <td><form name="form3" method="post" action="">
      <input name="addusernumber" type="text" id="addusernumber" size="10" maxlength="8">
    </form></td>
  </tr>
  <tr>
    <td width="33%" align="right">Code:</td>
    <td><form name="form4" method="post" action="">
      <input name="addusercode" type="text" id="addusercode" size="15" maxlength="12">
    </form></td>
  </tr>
  <tr>
    <td width="33%" align="right">Phone:</td>
    <td><form name="form5" method="post" action="">
      <input name="adduserphone" type="text" id="adduserphone" size="15" maxlength="11">
    </form></td>
  </tr>
  <tr>
    <td width="33%" align="right">E-mail:</td>
    <td><form name="form6" method="post" action="">
      <input name="adduseremail" type="text" id="adduseremail" size="25" maxlength="20">
    </form></td>
  </tr>
  <tr>
    <td width="33%" align="right">OICQ:</td>
    <td><form name="form7" method="post" action="">
      <input name="adduserqq" type="text" id="adduserqq" size="15" maxlength="11">
    </form></td>
  </tr>
  <tr>
    <td width="33%" align="right">Maxbook:</td>
    <td><form name="form8" method="post" action="">
      <input name="addusermax" type="text" id="addusermax" size="5" maxlength="3">
    </form></td>
  </tr>
  <tr align="center">
    <td colspan="2"><form name="form9" method="post" action="">
      <input name="adduserenter" type="submit" id="adduserenter" value="enter">
      <input name="adduserreset" type="reset" id="adduserreset" value="reset">
    </form></td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?