register.jsp

来自「A brew application taking backup of the 」· JSP 代码 · 共 58 行

JSP
58
字号
<%--     Document   : Register    Created on : Feb 3, 2009, 2:44:54 PM    Author     : Work IS Passion--%><%@page contentType="text/html" pageEncoding="UTF-8"%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"   "http://www.w3.org/TR/html4/loose.dtd"><jsp:useBean id="formHandler" class="test.FormBean" scope="request"></jsp:useBean><html>    <head>        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">        <title>JSP Page</title>    </head>    <body>               <form action="process.jsp" method="post">        <table cellpadding="2" cellspacing="1" bgcolor="pink" border="0">            <th colspan="2">                <font size="5">Registration Form</font>                <br>                    <font size="2" color="red"><sup>*</sup>Required Fields</font>            </th>            <tr>                <td>First Name<sup>*</sup>:</td>                <td>                    <input type="text" name="firstName">                </td>            </tr>            <tr>                <td>Last Name<sup>*</sup>:</td>                <td>                    <input type="text" name="lastName">                </td>            </tr>            <tr>                <td>Contact No<sup>*</sup>:</td>                <td>                    <input type="text" name="contact">                                  </td>            </tr>            <tr>                <td>Email Id<sup>*</sup>:</td>                <td>                    <input type="text" name="email">                </td>            </tr>            <tr>                <td>                </td>                <td><input type="submit" value="Register"></td>            </tr>        </table>                 </form>    </body></html>

⌨️ 快捷键说明

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