⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 detail.jsp

📁 一个购房管理系统,JSF+Hibernate+Mssql2
💻 JSP
字号:
<%@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 OperatorFunction</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/12.jpg" width="830" height="60"></h:graphicImage>
            <h:form>
                <h:panelGrid columns="2">
                    <h:outputText value="#{label.Id}" />
                    <h:outputText value="#{operatorFunction.operatorFunction.id}" title="Id" />
                    <h:outputText value="#{label.FunctionID}" />
                    <h:outputText value="#{operatorFunction.operatorFunction.functionId}" title="FunctionID" />
                    <h:outputText value="#{label.OperatorID}" />
                    <h:outputText value="#{operatorFunction.operatorFunction.operator.operatorId}" title="OperatorID" />
                    <h:commandButton action="operatorFunction_edit" value="#{label.Edit}" />                
                	<h:commandButton action="operatorFunction_list" value="#{label.ShowAllOperatorFunction}"/>   
                </h:panelGrid>                             
            </h:form>
        </f:view>
    </body>
</html>

⌨️ 快捷键说明

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