?? ticketinfo.jsp
字號:
<%@ page language="java" contentType="text/html; charset=gbk"
pageEncoding="gbk"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html:html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gbk">
<title>Insert title here</title>
</head>
<body>
<p> </p>
<table width="874" height="212" border="1" align="center">
<tr>
<th width="97" scope="col">航空公司</th>
<th width="74" scope="col">航班號</th>
<th width="87" scope="col">起飛時間</th>
<th width="90" scope="col">到達時間</th>
<th width="70" scope="col">原價</th>
<th width="65" scope="col">艙位/票數/價格</th>
<th width="68" scope="col">建設/燃油</th>
<th width="68" scope="col">預定</th>
</tr>
<logic:present name="fights">
<logic:iterate id="fight" name="fights">
<html:form action="/loadTakeSelfAddressAction.do?fid=${fight.fightId}&leavecity=${fight.leaveCity}" method="post">
<tr>
<td><bean:write name="fight" property="fightName"/></td>
<td><bean:write name="fight" property="fightNo"/></td>
<td><bean:write name="fight" property="leaveTime"/></td>
<td><bean:write name="fight" property="arriveTime"/></td>
<td><bean:write name="fight" property="price"/></td>
<td>
<select name="engineRoom">
<option>特價艙/${fight.specialNum}/${0.5*fight.price}</option>
<option>經濟艙/${fight.economicNum}/${0.7*fight.price}</option>
<option>公務艙/${fight.businessNum}/${0.8*fight.price}</option>
<option>頭等艙/${fight.headNum}/${fight.price}</option>
</select>
</td>
<td><bean:write name="fight" property="fuelRate"/>/<bean:write name="fight" property="buildRate"/></td>
<td><html:submit>預定</html:submit></td>
</tr>
</html:form>
</logic:iterate>
</logic:present>
<tr>
<td><a href="index.jsp" target="_top">再次查詢</a></td>
</tr>
</table>
</body>
</html:html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -