?? queryreserve.jsp
字號:
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean"
prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html"
prefix="html"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic"
prefix="logic"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta http-equiv="Content-Language" content="zh-CN" />
<meta name="Keywords" content="關鍵詞1,關鍵詞2,關鍵詞3,關鍵詞4,……" />
<meta name="Description" content="你網頁的簡述" />
<meta name="Robots" content="All" />
<meta name="Generator" content="Dreamweaver" />
<meta name="Author" content="第五只鼠,email" />
<meta name="Copyright" content="本頁版權歸第五只鼠所有。All Rights Reserved" />
<title>預訂查詢</title>
<link href="../../../css/css.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h3 id="subTitle">
預訂查詢
</h3>
<table width="90%" border="0" align="center" cellpadding="0"
cellspacing="0" id="tableSearch">
<tr>
<html:form method="post" action="/queryresevebykhname">
<td width="15%" align="right">
客戶姓名
</td>
<td width="15%">
<input name="khname" type="text" class="input1" />
</td>
<td width="15%">
<html:submit>查詢</html:submit>
</td>
</html:form>
<html:form method="post" action="/queryreservebyidnum">
<td width="17%" align="right">
客戶身份證號
</td>
<td width="13%">
<input name="idnum" type="text" class="input1" />
</td>
<td width="15%" colspan="2" align="center">
<html:submit>查詢</html:submit>
</td>
</html:form>
</tr>
<tr>
<html:form method="post" action="/queryreservebyroomtype">
<td width="15%" align="right">
客房類型
<br>
</td>
<td width="15%">
<select name="roomtype" class="input1">
<option>
經濟型客房
</option>
<option>
高檔型客房
</option>
<option>
總統套間
</option>
<option>
雙人經濟型
</option>
<option>
單人經濟型
</option>
</select>
<br>
</td>
<td width="15%">
<html:submit>查詢</html:submit>
<br>
</td>
</html:form>
<html:form method="post" action="/queryreservebyroomnum">
<td width="17%" align="right">
客房編號
<br>
</td>
<td width="13%">
<input name="roomnum" type="text" class="input1" />
<br>
</td>
<td width="10%" align="center">
<html:submit>查詢</html:submit>
<br>
</td>
</html:form>
<html:form method="post" action="/queryallreserve">
<td width="5%">
<html:submit>查詢所有</html:submit>
</td>
</html:form>
</tr>
</table>
<table width="90%" border="0" align="center" cellpadding="0"
cellspacing="0" id="table">
<tr>
<th width="15%" nowrap="nowrap">
客房類型
</th>
<th width="10%" nowrap="nowrap">
客房編號
</th>
<th width="10%" nowrap="nowrap">
客戶姓名
</th>
<th width="10%" nowrap="nowrap">
客戶性別
</th>
<th width="15%" nowrap="nowrap">
身份證號
</th>
<th width="10%" nowrap="nowrap">
客戶傳真
</th>
<th width="15%" nowrap="nowrap">
聯系電話
</th>
<th width="10%" nowrap="nowrap">
入住時間
</th>
<th width="10%" nowrap="nowrap" colspan="2">
操作
</th>
</tr>
<logic:present name="result" scope="request">
<logic:iterate id="show" name="result" scope="request">
<tr>
<html:form method="post" action="/queryreserveforedit">
<td align="center">
<bean:write name="show" property="roomtype" />
</td>
<td align="center">
<bean:write name="show" property="roomnum" />
</td>
<td align="center">
<bean:write name="show" property="khname" />
</td>
<td>
<bean:write name="show" property="khsex" />
</td>
<td align="center">
<bean:write name="show" property="idnum" />
<input type="hidden" name="idnum"
value="<bean:write name='show' property='idnum'/>">
</td>
<td align="center">
<bean:write name="show" property="fax" />
</td>
<td>
<bean:write name="show" property="telnum" />
</td>
<td align="center">
<bean:write name="show" property="ruzhutime" />
</td>
<td width="10%">
<html:submit>修改
</html:submit>
</td>
</html:form>
<html:form action="/deletereserve" method = "post">
<td width="10%">
<input type="hidden" name="idnum"
value="<bean:write name='show' property='idnum'/>">
<html:submit>刪除
</html:submit>
</td>
</html:form>
</tr>
</logic:iterate>
</logic:present>
</table>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -