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

📄 searchmanager.jsp

📁 上网计费系统,适用网吧或者自己学习用用JAVA写成
💻 JSP
字号:
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib uri="/WEB-INF/c.tld" prefix="c" %>
<%@ taglib uri="/WEB-INF/fmt.tld" prefix="fmt" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>无标题文档</title>
<link href="../../layout/shct10000.css" rel="stylesheet" type="text/css" ></link>
<script type="text/javascript" src="../../js/calendar.js"></script>
<script language=JavaScript><!--
function clearText(){	
	
}
//-->
</script> 
</head>
<body>
  <table width="776" border="0" cellspacing="0" cellpadding="0">
         	<tr>
         		<td id="card1" width="776" align="center" bgcolor="#3D84CD" style="cursor:hand; color:#ffffff; font-size:14px; font-weight:bold">
         			搜索条件</td>			
            </tr>   
  </table>
<form action="searchAdmin.do" method="get">  
<table border=0 cellspacing=0 cellpadding=4 width='100%'>
<tr align=center>
<td width=40% align=right nowrap valign=bottom>
<br/>
<strong>营业员姓名</strong></td>
<td align=left valign=bottom>
<input type='text' name='realName' value='' size=30 maxlength=100 class=subject/>
&nbsp;&nbsp;</td>
</tr>

<tr align=center>
<td align=right nowrap valign=bottom>
  <strong>营业员帐号</strong></td>

<td align=left valign=bottom><input type='text' name='loginName' value='' size=30 maxlength=100 class=subject/></td>
</tr>

<tr align=center>
<td align=right nowrap valign=bottom><strong>营业厅名称</strong></td>

<td align=left valign=bottom><input type='text' name='address' value='' size=30 maxlength=100 class=subject/></td>
</tr>

<tr align=center>
<td align=right nowrap valign=bottom><strong>注册时间 </strong></td>
<td align=left valign=bottom>
<b>从</b><input id='startDate' name='startDate' type='text' onclick='WebCalendar.timeShow=true;calendar();' onblur="clearText();"/>
<b>到</b><input id='endDate' name='endDate' type='text' onclick='WebCalendar.timeShow=true;calendar();' onblur="clearText();"/>
</td>
</tr>

<tr align=center>
<td align=right nowrap valign=top><strong>职位</strong></td>
<td align=left valign=bottom>
<select name="role">
  <c:forEach var="role" items="${sessionScope.roles}">
     <option value="<c:out value="${role.id}"/>" /><c:out value="${role.name}"/>
  </c:forEach>
</select></td>
</tr>

<tr align=center>
<td align=right nowrap valign=bottom>
<b>排序</b>
</td>
<td align=left valign=bottom>
<select name="orderBy" class=selstyle>
<option value="id">ID</option>
<option value="realName">营业员姓名</option>
<option value="loginName">营业员帐号</option>
<option value="address">营业厅名称</option>
<option value="postcode">邮编</option>
<option value="role">职位</option>
<option value="registerDate">注册时间</option>
</select>
<select name="desc" class=selstyle>
<option value="ASC">升序</option>
<option value="DESC">降序</option>
</select>
</td>
</tr>

<tr>
<td align=center colspan=2>
<input type='submit' name="search" value=' 搜 索 ' class=btnstyle/>
</td>
</tr>
</table>
</form>
</body>
</html>

⌨️ 快捷键说明

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