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

📄 ownerform.jsp

📁 Java/J2EE application framework based on [Expert One-on-One J2EE Design and Development] by Rod John
💻 JSP
字号:
<%@ include file="/WEB-INF/jsp/includes.jsp" %>
<%@ include file="/WEB-INF/jsp/header.jsp" %>

<P>
<H2><c:if test="${command.new}">New </c:if>Owner:</H2>
<spring:bind path="command">
  <FONT color="red">
    <B><c:out value="${status.errorMessage}"/></B>
  </FONT>
</spring:bind>
<P>
<FORM method="POST">
  <jsp:include page="/WEB-INF/jsp/fields/firstName.jsp"/>
  <jsp:include page="/WEB-INF/jsp/fields/lastName.jsp"/>
  <jsp:include page="/WEB-INF/jsp/fields/address.jsp"/>
  <jsp:include page="/WEB-INF/jsp/fields/city.jsp"/>
  <jsp:include page="/WEB-INF/jsp/fields/telephone.jsp"/>
  <c:if test="${command.new}">
    <INPUT type = "submit" value="Add Owner"  />
  </c:if>
  <c:if test="${!command.new}">
    <INPUT type = "submit" value="Update Owner"  />
  </c:if>
</FORM>
<P>
<BR>

<%@ include file="/WEB-INF/jsp/footer.jsp" %>

⌨️ 快捷键说明

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