detail.jsp
来自「一个购房管理系统,JSF+Hibernate+Mssql2」· JSP 代码 · 共 37 行
JSP
37 行
<%@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>Detail of CheckPayment</title>
</head>
<body>
<f:view>
<f:loadBundle basename="resources" var="label"/>
<h:messages errorStyle="color: red" infoStyle="color: green" layout="table"/>
<h:graphicImage url="../images/02.jpg" width="830" height="60"></h:graphicImage>
<h:form>
<h:panelGrid columns="2">
<h:outputText value="#{label.CheckPaymentID}"/>
<h:outputText value="#{checkPayment.checkPayment.checkPaymentId}" title="CheckPaymentID" />
<h:outputText value="#{label.PaymentStyle}"/>
<h:outputText value="#{checkPayment.checkPayment.paymentStyle}" title="PaymentStyle" />
<h:outputText value="#{label.PaymentTime}"/>
<h:outputText value="#{checkPayment.checkPayment.paymentTime}" title="PaymentTime" />
<h:outputText value="#{label.Payment}"/>
<h:outputText value="#{checkPayment.checkPayment.payment}" title="Payment" />
<h:outputText value="#{label.Bz}"/>
<h:outputText value="#{checkPayment.checkPayment.bz}" title="Bz" />
<h:outputText value="#{label.CheckID}"/>
<h:outputText value="#{checkPayment.checkPayment.houseCheck.checkId}" title="CheckID" />
</h:panelGrid>
<h:commandButton action="checkPayment_edit" value="#{label.Edit}" />
<br>
<h:commandButton action="checkPayment_list" value="#{label.ShowAllCheckPayment}"/>
</h:form>
</f:view>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?