📄 queryruzhu.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="/queryruzhubykhname">
<td width="10%" align="right">
客户姓名
</td>
<td width="15%">
<input name="khname" type="text" class="input1" />
</td>
<td width="5%">
<html:submit>查询</html:submit>
</td>
</html:form>
<html:form method="post" action="/queryruzhubyidnum">
<td width="10%" align="right">
客户身份证号
</td>
<td width="15%">
<input name="idnum" type="text" class="input1" />
</td>
<td width="5%" colspan="2" align="center">
<html:submit>查询</html:submit>
</td>
</html:form>
<html:form method="post" action="/queryruzhubytelnum">
<td width="10%" align="right">
客户电话
</td>
<td width="15%">
<input name="idnum" type="text" class="input1" />
</td>
<td width="5%" colspan="2" align="center">
<html:submit>查询</html:submit>
</td>
</html:form>
<html:form method="post" action="/queryallruzhu">
<td width="20%">
<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="10%" nowrap="nowrap">
Email
</th>
<th width="10%" nowrap="nowrap">
邮编
</th>
<th width="10%" nowrap="nowrap">
入住时间
</th>
</tr>
<logic:present name="result" scope="request">
<logic:iterate id="show" name="result" scope="request">
<tr>
<td align="center">
<bean:write name="show" property="telnum" />
</td>
<td align="center">
<bean:write name="show" property="khname" />
</td>
<td align="center">
<bean:write name="show" property="telnum" />
</td>
<td>
<bean:write name="show" property="xingzhengquyu" />
</td>
<td align="center">
<bean:write name="show" property="khsex" />
</td>
<td>
<bean:write name="show" property="gongzuoaddress" />
</td>
<td align="center">
<bean:write name="show" property="email" />
</td>
<td align="center">
<bean:write name="show" property="youbian" />
</td>
<td align="center">
<bean:write name="show" property="ruzhutime" />
</td>
</tr>
</logic:iterate>
</logic:present>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -