edit.jsp
来自「一个购房管理系统,JSF+Hibernate+Mssql2」· JSP 代码 · 共 35 行
JSP
35 行
<%@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>Edit Operator</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/23.jpg" width="830" height="60"></h:graphicImage>
<h:form>
<h:inputHidden value="#{operator.operator}" immediate="true"/>
<h:panelGrid columns="2">
<h:outputText value="#{label.OperatorID}" />
<h:outputText value="#{operator.operator.operatorId}" title="OperatorID" />
<h:outputText value="#{label.OperatorName}" />
<h:inputText id="operatorName" value="#{operator.operator.operatorName}" title="OperatorName" />
<h:outputText value="#{label.Password}" />
<h:inputText id="password" value="#{operator.operator.password}" title="Password" />
<h:outputText value="#{label.Tel}" />
<h:inputText id="tel" value="#{operator.operator.tel}" title="Tel" />
<h:outputText value="#{label.Bz}" />
<h:inputText id="bz" value="#{operator.operator.bz}" title="Bz" />
<h:commandLink action="#{operator.edit}" value="#{label.Save}"/>
<h:commandLink action="operator_list" value="#{label.ShowAllOperator}"/>
</h:panelGrid>
</h:form>
</f:view>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?