You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

73 lines
4.1 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%@page import="util.Info"%>
<%@page import="dao.CommDAO"%>
<%@page import="util.PageManager"%>
<html>
<head>
<title>用户注册</title><LINK href="css.css" type=text/css rel=stylesheet>
</head>
<body >
<p>已有用户注册列表:</p>
<form name="form1" id="form1" method="post" action="">
搜索: 用户名:<input name="yonghuming" type="text" id="yonghuming" size="12" />
姓名:<input name="xingming" type="text" id="xingming" size="12" />
QQ<input name="QQ" type="text" id="QQ" size="12" />
邮箱:<input name="youxiang" type="text" id="youxiang" size="12" />
电话:<input name="dianhua" type="text" id="dianhua" size="12" />
身份证:<input name="shenfenzheng" type="text" id="shenfenzheng" size="15" />
<input type="submit" name="Submit" value="查找" />
</form>
<table width="100%" border="1" align="center" cellpadding="3" cellspacing="1" bordercolor="00FFFF" style="border-collapse:collapse">
<tr>
<td width="30" align="center" bgcolor="CCFFFF">序号</td>
<td width="44" bgcolor='#CCFFFF'>用户名</td>
<td width="30" bgcolor='#CCFFFF'>密码</td>
<td width="30" bgcolor='#CCFFFF'>姓名</td>
<td width="30" bgcolor='#CCFFFF'>性别</td>
<td width="59" bgcolor='#CCFFFF'>出生年月</td>
<td width="22" bgcolor='#CCFFFF'>QQ</td>
<td width="30" bgcolor='#CCFFFF'>邮箱</td>
<td width="38" bgcolor='#CCFFFF'>电话</td>
<td width="78" bgcolor='#CCFFFF'>身份证</td>
<td width="94" bgcolor='#CCFFFF'>头像</td>
<td width="82" bgcolor='#CCFFFF'>地址</td>
<td width="55" bgcolor='#CCFFFF'>备注</td>
<td width="94" align="center" bgcolor="CCFFFF">添加时间</td>
<td width="52" align="center" bgcolor="CCFFFF">审核</td>
<td width="71" align="center" bgcolor="CCFFFF">操作</td>
</tr>
<%
new CommDAO().delete(request,"yonghuzhuce");
String url = "yonghuzhuce_list.jsp?1=1";
String sql = "select * from yonghuzhuce where 1=1 ";
if(request.getParameter("yonghuming")=="" ||request.getParameter("yonghuming")==null ){}else{sql=sql+" and yonghuming like '%"+request.getParameter("yonghuming").trim()+"%'";}
if(request.getParameter("xingming")=="" ||request.getParameter("xingming")==null ){}else{sql=sql+" and xingming like '%"+request.getParameter("xingming").trim()+"%'";}
if(request.getParameter("QQ")=="" ||request.getParameter("QQ")==null ){}else{sql=sql+" and QQ like '%"+request.getParameter("QQ").trim()+"%'";}
if(request.getParameter("youxiang")=="" ||request.getParameter("youxiang")==null ){}else{sql=sql+" and youxiang like '%"+request.getParameter("youxiang").trim()+"%'";}
if(request.getParameter("dianhua")=="" ||request.getParameter("dianhua")==null ){}else{sql=sql+" and dianhua like '%"+request.getParameter("dianhua").trim()+"%'";}
if(request.getParameter("shenfenzheng")=="" ||request.getParameter("shenfenzheng")==null ){}else{sql=sql+" and shenfenzheng like '%"+request.getParameter("shenfenzheng").trim()+"%'";}
sql+=" order by id desc";
//out.print(sql);
ArrayList<HashMap> list = PageManager.getPages(url,10,sql, request );
int i=0;
for(HashMap map:list){
i++;
%>
<tr>
<td width="30" align="center"><%=i %></td>
<td><%=map.get("yonghuming") %></td><td><%=map.get("mima") %></td><td><%=map.get("xingming") %></td><td><%=map.get("xingbie") %></td><td><%=map.get("chushengnianyue") %></td><td><%=map.get("QQ") %></td><td><%=map.get("youxiang") %></td><td><%=map.get("dianhua") %></td><td><%=map.get("shenfenzheng") %></td><td><a href='<%=map.get("touxiang") %>' target='_blank'><img src='<%=map.get("touxiang") %>' width=88 height=99 border=0 /></a></td><td><%=map.get("dizhi") %></td><td><%=map.get("beizhu") %></td>
<td width="94" align="center"><%=map.get("addtime") %></td>
<td width="52" align="center"><a href="sh.jsp?id=<%=map.get("id")%>&yuan=<%=map.get("issh")%>&tablename=yonghuzhuce" onClick="return confirm('确定要执行此操作?');"><%=map.get("issh")%></a></td>
<td width="71" align="center"><!--lianjie1--></td>
</tr>
<%
}
%>
</table>
<br>
${page.info }
</body>
</html>