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

📄 addpassenger.jsp

📁 eclipse java/jsp 航空管理系统
💻 JSP
字号:
<%--
  - Author:           王嘉
  - Date:             2005/4/13
  - Copyright Notice: 东软 国际合作事业部版权所有
--%>

<%@ page contentType="text/html;charset=GBK" language="java" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>

<jsp:useBean id="countrydraw" class="jiasir.CountryDraw" scope="request">
</jsp:useBean>
<% StringBuffer strb=countrydraw.countryAddDraw();%>
<jsp:useBean id="flightdraw"  class="jiasir.FlightDraw"  scope="request">
</jsp:useBean>
<% StringBuffer draw=flightdraw.flightAddDraw();%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html:html>
<head>
        <title><bean:message key="addPassenger.title"/>
        </title>
    </head>

<body bgcolor="#FFFFFF" text="#996699" link="#3333FF" vlink="#333366" alink="#0000CC">
<p><html:errors/></p>
<table width="603" border="0" cellpadding="0" cellspacing="0" class="myCss">
  <tr>
    <td>
      <hr>
      <table width="100%" border="0" cellspacing="1" cellpadding="1">
        <tr>
          <td width="50%" bgcolor="#CCCCCC"><div align="center" class="t"><bean:message key="addPassenger.heading"/></div></td>
          <td width="50%" bgcolor="#CCCCCC"><div align="right">
          <html:link page="/jsp/infoAdmin.do">
              <bean:message key="addPassenger.linkText.return"/>
          </html:link></div></td>
        </tr>
      </table>
      <hr>      
      <h3 class="t">
</table>
            
      <table width="603" border="1" cellspacing="0" cellpadding="0">
        <tr>
          <td>
    <html:form action="/addPassenger">
          <table width="603" border="0" cellspacing="0" cellpadding="0">
          <tr> 
            <td><bean:message 
                 key="addPassenger.form.flightTicket"/>
			  <html:text property="flightTicket" style="width:120px" maxlength="16"/> </td>
            <td><bean:message 
                 key="addPassenger.form.passengerName"/>
              <html:text property="passengerName" style="width:120px" maxlength="10"/></td>
          </tr>
          <tr> 
            <td><bean:message 
                 key="addPassenger.form.passengerId"/>
              <html:text property="passengerId" style="width:120px" maxlength="20"/>
			</td>
            <td><bean:message 
                 key="addPassenger.form.passengerIdKind"/>
              <html:select property="passengerIdKind" size="1">
                <html:option value="身份证">身份证</html:option>
                <html:option value="军官证">军官证</html:option>
                <html:option value="护照">护照</html:option>
              </html:select></td>
          </tr>
          <tr> 
            <td><bean:message 
                 key="addPassenger.form.passengerNat"/>
                 <%=strb%>
		    </td>
            <td><bean:message 
                 key="addPassenger.form.flightNo"/>
                 <%=draw%>
			</td>
          </tr>
          <tr> 
            <td><bean:message 
                 key="addPassenger.form.flightDate"/>
              <html:text property="flightDate" style="width:120px" maxlength="10"/>
			</td>
            <td><bean:message 
                 key="addPassenger.form.cori"/>
              <html:select property="cori" size="1">
                <html:option value="出境">出境</html:option>
                <html:option value="入境">入境</html:option>
              </html:select></td>
          </tr>
          <tr> 
            <td><bean:message 
                 key="addPassenger.form.thingsNum"/>
              <html:text property="thingsNum" style="width:120px" maxlength="10"/>
			</td>
            <td><bean:message 
                 key="addPassenger.form.things"/>
              <html:text property="things" style="width:120px" maxlength="20"/>
			</td>
          </tr>
          <tr> 
            <td><bean:message 
                 key="addPassenger.form.thingsQuantity"/>
              <html:text property="thingsQuantity" style="width:120px" maxlength="10"/>
			</td>
            <td><bean:message 
                 key="addPassenger.form.hold"/>
              <html:select property="hold" size="1">
                <html:option value="否">否</html:option>
                <html:option value="是">是</html:option>
                
              </html:select></td>
          </tr>
        </table>
        <p>
          <html:submit>
                <bean:message key="button.confirm"/>
          </html:submit>
          <html:reset>
                <bean:message key="button.reset"/>
          </html:reset>
          <html:link page="/jsp/infoAdmin.do">
              <bean:message key="addPassenger.linkText.return"/>
          </html:link>
        </p>
    </html:form></td>
        </tr>
      </table>
      
   </td>
  </tr>
</table>
</body>
</html:html>

⌨️ 快捷键说明

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