reg.jsp

来自「《JSF第一步》的源码清华大学出版社的书」· JSP 代码 · 共 45 行

JSP
45
字号
<%@page contentType="text/html; charset=UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<html>
<head>
<title>A Register page</title>
</head>
<body>
<f:view>
  <h:form>
    <h3>Please enter your register information.</h3>
    <table>
      <tr>
        <td>Name:</td>
        <td>
          <h:inputText id="userName" value="#{user.userName}" required="true"/>
          <h:message for="userName" />
        </td>
      </tr>
      <tr>
        <td>Password:</td>
        <td>
          <h:inputSecret id="password" value="#{user.password}" required="true">          
          </h:inputSecret> 
          <h:message for="password" />   
        </td>
      </tr>
      <tr>
        <td>Check Password:</td>
        <td>
          <h:inputSecret id="pwd" value="#{user.pwd}" required="true">          
          </h:inputSecret> 
          <h:message for="pwd" />   
        </td>
      </tr>
    </table>
    <p>
      <h:commandButton value="Register" action="#{user.registerAction}"/>
  </h:form>
  <h:messages globalOnly="true">
  </h:messages>
</f:view>
</body>
</html>

⌨️ 快捷键说明

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