search.jsp

来自「Begining JSP Web Development外文书籍源代码」· JSP 代码 · 共 34 行

JSP
34
字号
<html>

  <head>
    <title>Chapter 5 Examples</title>
  </head>

  <body>
    <h3>Search Form</h3>
    <br />
    <form method="POST" action="searchresults.jsp">
      <table border="0" cellpadding="0" cellspacing="0" width="439">
        <tr>
          <td width="433" colspan="2">
            <b>
              Look up for Employee 
              ( Enter one of the following criteria)
            </b>
          </td>
        </tr>
        <tr>
          <td width="157">Employee Id</td>
          <td width="276"><input type="text" name="empid" size="21"></td>
        </tr>
        <tr>
          <td width="157">Employee Name</td>
          <td width="276"><input type="text" name="empname" size="21"></td>
        </tr>
      </table>
      <p><input type="submit" value="Search ..." name="SearchBtn"></p>
    </form>
  </body>

</html>

⌨️ 快捷键说明

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