register_ok.jsp
来自「一个购房管理系统,JSF+Hibernate+Mssql2」· JSP 代码 · 共 61 行
JSP
61 行
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<%@taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<%@taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>List Customer</title>
</head>
<body>
<center>
<f:view>
<f:loadBundle basename="resources" var="label" />
<h1>
<h:outputText value="#{label.RegisterOK}" />
</h1>
<h:form>
<table width="200" border="0">
<tr>
<td colspan="2">
<h:outputText value="#{label.RememberPlease}" />
:
</td>
</tr>
<tr>
<td>
<h:outputText value="#{label.CustomerName}" />
:
</td>
<td>
<h:outputText value="#{customer.customer.customerName}" />
</td>
</tr>
<tr>
<td>
<h:outputText value="#{label.CustomerID}" />
:
</td>
<td>
<h:outputText value="#{customer.customer.customerId}" />
</td>
</tr>
<tr>
<td>
<h:outputText value="#{label.Password}" />
:
</td>
<td>
<h:outputText value="#{customer.customer.password}">
<f:converter converterId="javax.faces.Byte" />
</h:outputText>
</td>
</tr>
</table>
<h:commandButton action="#{customer.backToV_HouseInfo}" value="#{label.Back}"/>
</h:form>
</f:view>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?