blob: 1032c6f7e9df2cdaf1e4d59146412662a94dd626 [file] [log] [blame]
<%--
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
--%>
<%@ page language="java" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<html>
<head>
<title>App1</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<p><b><bean:message key="edit"/> (JSP <bean:message key="version"/>)</b></p>
<html:form name="address" method="POST" scope="session" type="examples.app1.AddressBean" action="address1.do">
<input type="hidden" name="action" value="list">
<table width="300" border="1" cellspacing="" cellpadding="5">
<tr>
<td><bean:message key="firstname"/>:</td>
<td><html:text name="address" property="firstname"/></td>
</tr>
<tr>
<td><bean:message key="lastname"/></td>
<td><html:text name="address" property="lastname"/></td>
</tr>
<tr>
<td><bean:message key="street"/></td>
<td><html:text name="address" property="street"/></td>
</tr>
<tr>
<td><bean:message key="zip"/></td>
<td><html:text name="address" property="zip"/></td>
</tr>
<tr>
<td><bean:message key="city"/></td>
<td><html:text name="address" property="city"/></td>
</tr>
<tr>
<td><bean:message key="country"/></td>
<td><html:text name="address" property="country"/></td>
</tr>
</table>
<br>
<input type="submit" name="Submit" value=" <bean:message key="save"/> " onclick="address.action.value='save'; document.address.submit(); return false;">
<input type="submit" name="Submit2" value="<bean:message key="cancel"/>" onclick="address.action.value='list'; document.address.submit(); return false;">
</html:form>
<br>
<html:link forward="editAddressSrcJsp">Template</html:link>
</body>
</html>