public_html\edit.jsp
06-Apr-2005 12:00:11
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd">
3 <%@ page contentType="text/html;charset=ISO-8859-1"%>
4 <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
5 <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
6 <f:view>
7 <html>
8 <head>
9 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
10 <title>
11 Edit Detail
12 </title>
13 </head>
14 <body>
15 <h:form>
16 <h:panelGrid columns="2">
17 <h:outputLabel value="ID" rendered="#{editContact.contactId > 0}"/>
18 <h:outputLabel value="#{editContact.contactId}" rendered="#{editContact.contactId > 0}"/>
19 <h:outputLabel value="First Name"/>
20 <h:inputText value="#{editContact.firstName}"/>
21 <h:outputLabel value="Last Name"/>
22 <h:inputText value="#{editContact.lastName}"/>
23 <h:outputLabel value="Age"/>
24 <h:inputText value="#{editContact.age}"/>
25 <h:commandButton value="Save" action="#{editBB.saveAction}"/>
26 <h:commandButton value="Cancel" action="return" immediate="true"/>
27 </h:panelGrid>
28 <h:inputHidden value="#{editContact.contactId}"/>
29 </h:form>
30 </body>
31 </html>
32 </f:view>