📄 detail.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 Community</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/03.jpg" width="830" height="60"></h:graphicImage>
<h:form>
<h:panelGrid columns="2">
<h:outputText value="#{label.CommunityID}"/>
<h:outputText value="#{community.community.communityId}"
title="CommunityId" />
<h:outputText value="#{label.CommunityName}"/>
<h:outputText value="#{community.community.communityName}"
title="CommunityName" />
<h:outputText value="#{label.Address}"/>
<h:outputText value="#{community.community.address}"
title="Address" />
<h:outputText value="#{label.Developer}"/>
<h:outputText value="#{community.community.developer}"
title="Developer" />
<h:outputText value="#{label.Tel1}"/>
<h:outputText value="#{community.community.tel1}" title="Tel1" />
<h:outputText value="#{label.Tel2}"/>
<h:outputText value="#{community.community.tel2}" title="Tel2" />
<h:outputText value="#{label.SellingAgents}"/>
<h:outputText value="#{community.community.sellingAgents}"
title="SellingAgents" />
<h:outputText value="#{label.Property}"/>
<h:outputText value="#{community.community.property}"
title="Property" />
<h:outputText value="#{label.PublishTime}"/>
<h:outputText value="#{community.community.publishTime}"
title="PublishTime" />
<h:outputText value="#{label.State}"/>
<h:outputText value="#{community.community.state}" title="State" />
<h:outputText value="#{label.Introduce}" />
<h:outputText value="#{community.community.introduce}"
title="Introduce" />
<h:outputText value="#{label.Image1}"/>
<h:graphicImage url="#{community.detailUrl}images.do?method=getCommunityImages&id=1" width="10%"></h:graphicImage>
<h:outputText value="#{label.Image2}"/>
<h:graphicImage url="#{community.detailUrl}images.do?method=getCommunityImages&id=2" width="10%"></h:graphicImage>
<h:outputText value="#{label.Image3}"/>
<<h:graphicImage url="#{community.detailUrl}images.do?method=getCommunityImages&id=3" width="10%"></h:graphicImage>
<h:outputText value="#{label.Image4}"/>
<h:graphicImage url="#{community.detailUrl}images.do?method=getCommunityImages&id=4" width="10%"></h:graphicImage>
<h:outputText value="#{label.Image5}" />
<h:graphicImage url="#{community.detailUrl}images.do?method=getCommunityImages&id=5" width="10%"></h:graphicImage>
<h:outputText value="#{label.Image6}"/>
<h:graphicImage url="#{community.detailUrl}images.do?method=getCommunityImages&id=6" width="10%"></h:graphicImage>
<h:outputText value="#{label.Bz}"/>
<h:outputText value="#{community.community.bz}" title="Bz" />
</h:panelGrid>
<h:commandButton action="community_edit" value="#{label.Edit}"/>
<br>
<h:commandButton action="community_list"
value="#{label.ShowAllCommunity}"/>
</h:form>
</f:view>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -