📄 enter_order_information.jsp
字号:
<%-- Copyright 2002 Sun Microsystems, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - Redistribution in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of Sun Microsystems, Inc. or the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. This software is provided "AS IS," without a warranty of any kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. You acknowledge that Software is not designed, licensed or intended for use in the design, construction, operation or maintenance of any nuclear facility.--%><%-- % $Id: enter_order_information.jsp,v 1.1.2.1 2002/12/06 09:00:39 iluo Exp $ % Copyright 2001 Sun Microsystems, Inc. All rights reserved. % Copyright 2001 Sun Microsystems, Inc. Tous droits rÈservÈs.--%><%@ page contentType="text/html;charset=UTF-8" %><%@ taglib uri="/WEB-INF/waftags.tld" prefix="waf" %><%@ taglib prefix="c" uri="/WEB-INF/c.tld" %><p class="petstore_title">账单发送信息</p><waf:form name="order_ino" method="POST" action="order.do"> <table cellpadding="5" cellspacing="0" width="100%" border="0"> <tr> <td class="petstore_form" align="right"> <b>姓</b> </td> <td align="left" colspan="2"> <waf:input cssClass="petstore_form" type="text" name="family_name_a" size="30" maxlength="30" validation="validation"> <waf:value><c:out value="${customer.account.contactInfo.familyName}"/></waf:value> </waf:input> </td> </tr> <tr> <td class="petstore_form" align="right"> <b>名</b> </td> <td align="left" colspan="2"> <waf:input cssClass="petstore_form" type="text" name="given_name_a" size="30" maxlength="30" validation="validation"> <waf:value><c:out value="${customer.account.contactInfo.givenName}"/></waf:value> </waf:input> </td> </tr> <tr> <td class="petstore_form" align="right"> <b>所在省市</b> </td> <td class="petstore_form" align="left"> <waf:select size="1" name="state_or_province_a"> <waf:selected><c:out value="${customer.account.contactInfo.address.state}"/></waf:selected> <waf:option value="北京市">北京市</waf:option> <waf:option value="上海市">上海市</waf:option> <waf:option value="江苏省">江苏省</waf:option> </waf:select> </td> <td class="petstore_form"><b>邮政编码</b> <waf:input cssClass="petstore_form" type="text" name="postal_code_a" size="12" maxlength="12" validation="validation"> <waf:value><c:out value="${customer.account.contactInfo.address.zipCode}"/></waf:value> </waf:input> </td> </tr> <tr> <td class="petstore_form" align="right"> <b>所在县市</b> </td> <td align="left" colspan="2"> <waf:input cssClass="petstore_form" type="text" name="city_a" size="55" maxlength="70" validation="validation"> <waf:value><c:out value="${customer.account.contactInfo.address.city}"/></waf:value> </waf:input> </td> </tr> <tr> <td class="petstore_form" align="right"><b>详细街道地址</b></td> <td align="left" colspan="2"> <waf:input cssClass="petstore_form" type="text" name="address_1_a" size="55" maxlength="70" validation="validation"> <waf:value><c:out value="${customer.account.contactInfo.address.streetName1}"/></waf:value> </waf:input> </td> </tr> <tr> <td> </td> <td align="left" colspan="2"> <waf:input cssClass="petstore_form" type="text" name="address_2_a" size="55" maxlength="70"> <waf:value><c:out value="${customer.account.contactInfo.address.streetName2}"/></waf:value> </waf:input> </td> </tr> <tr> <td class="petstore_form" align="right"> <b>国家</b> </td> <td class="petstore_form" align="left" colspan="2"> <waf:select size="1" name="country_a"> <waf:selected><c:out value="${customer.account.contactInfo.address.country}"/></waf:selected> <waf:option value="美国">美国</waf:option> <waf:option value="加拿大" /> <waf:option value="日本" /> <waf:option value="中国" /> </waf:select> </td> </tr> <tr> <td class="petstore_form" align="right"> <b>电话号码</b> </td> <td align="left" colspan="2"> <waf:input cssClass="petstore_form" type="text" name="telephone_number_a" size="12" maxlength="70" validation="validation"> <waf:value><c:out value="${customer.account.contactInfo.telephone}"/></waf:value> </waf:input> </td> </tr> <tr> <td class="petstore_form" align="right"> <b>E-Mail地址</b> </td> <td align="left" colspan="2"> <waf:input cssClass="petstore_form" type="text" name="email_a" size="12" maxlength="70" validation="validation"> <waf:value><c:out value="${customer.account.contactInfo.email}"/></waf:value> </waf:input> </td> </tr> </table> <p class="petstore_title">商品配送信息</p> <table cellpadding="5" cellspacing="0" width="100%" border="0"> <tr> <td class="petstore_form" align="right"> <b>姓</b> </td> <td align="left" colspan="2"> <waf:input cssClass="petstore_form" type="text" name="family_name_b" size="30" maxlength="30" validation="validation"> <waf:value><c:out value="${customer.account.contactInfo.familyName}"/></waf:value> </waf:input> </td> </tr> <tr> <td class="petstore_form" align="right"> <b>名</b> </td> <td align="left" colspan="2"> <waf:input cssClass="petstore_form" type="text" name="given_name_b" size="30" maxlength="30" validation="validation"> <waf:value><c:out value="${customer.account.contactInfo.givenName}"/></waf:value> </waf:input> </td> </tr> <tr> <td class="petstore_form" align="right"> <b>所在省市</b> </td> <td class="petstore_form" align="left"> <waf:select size="1" name="state_or_province_b"> <waf:selected> <c:out value="${customer.account.contactInfo.address.state}"/> </waf:selected> <waf:option value="北京市">北京市</waf:option> <waf:option value="上海市">上海市</waf:option> <waf:option value="江苏省">江苏省</waf:option> </waf:select> </td> <td class="petstore_form"><b>邮政编码</b> <waf:input cssClass="petstore_form" type="text" name="postal_code_b" size="12" maxlength="12" validation="validation"> <waf:value><c:out value="${customer.account.contactInfo.address.zipCode}"/></waf:value> </waf:input> </td> </tr> <tr> <td class="petstore_form" align="right"> <b>所在城市</b> </td> <td align="left" colspan="2"> <waf:input cssClass="petstore_form" type="text" name="city_b" size="55" maxlength="70" validation="validation"> <waf:value><c:out value="${customer.account.contactInfo.address.city}"/></waf:value> </waf:input> </td> </tr> <tr> <td class="petstore_form" align="right"><b>详细街道地址</b></td> <td align="left" colspan="2"> <waf:input cssClass="petstore_form" type="text" name="address_1_b" size="55" maxlength="70" validation="validation"> <waf:value><c:out value="${customer.account.contactInfo.address.streetName1}"/></waf:value> </waf:input> </td> </tr> <tr> <td> </td> <td align="left" colspan="2"> <waf:input cssClass="petstore_form" type="text" name="address_2_b" size="55" maxlength="70"> <waf:value><c:out value="${customer.account.contactInfo.address.streetName2}"/></waf:value> </waf:input> </td> </tr> <tr> <td class="petstore_form" align="right"> <b>国家</b> </td> <td class="petstore_form" align="left" colspan="2"> <waf:select size="1" name="country_b"> <waf:selected><c:out value="${customer.account.contactInfo.address.country}"/></waf:selected> <waf:option value="美国">美国</waf:option> <waf:option value="加拿大" /> <waf:option value="日本" /> <waf:option value="中国" /> </waf:select> </td> </tr> <tr> <td class="petstore_form" align="right"> <b>电话号码</b> </td> <td align="left" colspan="2"> <waf:input cssClass="petstore_form" type="text" name="telephone_number_b" size="12" maxlength="70" validation="validation"> <waf:value><c:out value="${customer.account.contactInfo.telephone}"/></waf:value> </waf:input> </td> </tr> <tr> <td class="petstore_form" align="right"> <b>E-Mail地址</b> </td> <td align="left" colspan="2"> <waf:input cssClass="petstore_form" type="text" name="email_b" size="12" maxlength="70" validation="validation"> <waf:value><c:out value="${customer.account.contactInfo.email}"/></waf:value> </waf:input> </td> </tr> </table> <input class="petstore_form" type="submit" value="发送信息"></waf:form>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -