📄 userman.asp
字号:
<!-- #include file="include/adovbs.inc" -->
<!-- #include file="include/dataconn.asp" -->
<!-- #include file="include/checkhy.asp" -->
<!-- #include file="common.asp" -->
<%
Response.Buffer =false
Response.Expires=-1
content=rtrim(ltrim(Request("findcontent")))'查找的关键字
TjNumber=session("user_id")
password=chkstr(trim(request("password")))
id=chkstr(trim(request("id")))
action=request("action")
if action="reg" then
set Rs=server.CreateObject("adodb.recordset")
rs.open "select * from hyclub where id="&tjnumber&" and edupassword='"&password&"'",conn
if rs.eof then
response.write "用户或二级密码不对!"
response.end
else
session("edupassword")=rs("edupassword")
end if
rs.close
set rs=nothing
end if
if session("edupassword")="" then
%><HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<link rel="stylesheet" href="include/e1.css" type="text/css">
</HEAD>
<BODY>
<div align="center"><form method="POST" action="userman.asp?id=<%=session("user_id")%>&action=reg">
<table border="0" width="500">
<tr>
<td width="237" align="right"> </td>
<td>
</td>
</tr>
<tr>
<td width="237" align="right"> </td>
<td>
</td>
</tr>
<tr>
<td width="237" align="right">请输入二级密码:</td>
<td>
<input type="text" name="password" size="20">
</td>
</tr>
<tr>
<td width="237" align="right">
<input type="submit" value="提交" name="B1"></td>
<td><input type="reset" value="重置" name="B2"></td>
</tr>
</table></form>
</div>
</BODY>
</HTML>
<%
else
set HyRs=server.CreateObject("adodb.recordset")
if tjnumber<>"" then
if len(content)=0 then '判断属于查找还是列出所有信息
sql="select * from hyclub where dlid="&tjnumber&" order by id desc"
else
sql="select * from hyclub where dlid="&tjnumber&" "
sql=sql&" and hynumber like '%" & content & "%'"
sql=sql&" order by id desc"
end if
end if
HyRs.Open sql,conn
j=HyRs.RecordCount
%>
<html>
<head>
<meta NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<link rel="stylesheet" href="include/e1.css" type="text/css">
</head>
<script>
function openwin(page,size)
{
window.open(page,"newuser","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width="+ size);
}
function openwin1(page,size)
{
window.open(page,"newuser","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,height=350,width="+ size);
}
function makesure()
{
return(confirm("此操作十分危险,请你考虑清楚,务必慎重!\n此操作将永久删除此已确认的会员,请确认此会员是否有下线,否则不能删除\n你确定要删除此会员吗?"))
}
function makesureConfirm()
{
return(confirm("此操作将确认会员,你确定要确认吗?"))
}
function makesure1()
{
return(confirm("点击此操作代表你已经给此客户发放了奖金,你确定要发放奖金吗?"))
}
</script>
<body leftmargin="10" topmargin="10" marginwidth="0" marginheight="0">
<form method="post" action="userman.asp" id="form1" name="form1">
<table width="100%" border="0" height="21" cellpadding="0" cellspacing="0">
<tr>
<td width="80%"> <div align="center"> 查找:
<input id="findcontent" name="findcontent" value="输入需要查找的关键字" size="20" onFocus="this.value=''">
<input type="image" value="submit" src="Image/027.gif" id="image1" name="image1">
共计: <font color=red>
<% =j%>
</font> 人 </div></td>
<td width="20%"> </td>
</tr>
</table>
</form>
<%
if j>0 then
dim i
i=1
const pagesize=10
HyRs.PageSize = pagesize
total=HyRs.PageCount
pageno=Request("pageno")
if pageno="" then pageno=1
if not isnumeric(pageno) and pageno<>"" then
%>
<script>alert("请输入正确的页码");
window.history.back();</script>
<%Response.End
End if
if (pageno-1)*pagesize>=j then
if (j mod pagesize)=0 then
pageno= j \ pagesize
else
pageno= j \ pagesize + 1
end if
end if
if pageno<1 then
%>
<script>alert("页码数不能小于1");
window.history.back();</script>
<%Response.End
End if
if (pageno>65535) then
%>
<script>alert("页码数不能大于总数!");
window.history.back();</script>
<%Response.End
end if
if (clng(pageno)>clng(total)) then %>
<script>alert("页码数不能大于总数!");
window.history.back();</script>
<%
Response.End
end if
pageno=cint(pageno)
%>
<table border="1" cellpadding="0" cellspacing="0" width="100%" bordercolordark="#E0F4FF" bordercolorlight="#162D6B" height="47">
<tr class="td3">
<td width="5%" align="center"> 会员ID</td>
<td width="20%"> <div align="center">名称(单数)</div></td>
<td width="6%"> <div align="center">登录帐号</div></td>
<td width="6%" align="center"> 推荐人帐号</td>
<td width="17%"> <div align="center"><font color="#FFFFFF">注册时间</font></div></td>
<td width="5%" align="center"> 审核</td>
<!--<td width="6%"> <div align="center"><font color="#FFFFFF">删除</font></div></td>-->
</tr>
<%
HyRs.absolutepage=pageno
dim x
x=2
while (not HyRs.eof) and (i<=pagesize)
if x mod 2 then
%>
<tr class="td1">
<%
else
%>
<tr height="25">
<%
end if
%>
<td height="22" align="center"> <%=hyrs("hyid")%></td>
<td height="22"><div align="center"><a href="javascript:openwin('hyview.asp?id=<% =HyRs("id")%>',800)">
<%set nm=conn.execute("select hyname from hy where id="&HyRs("id")&"")
response.write nm("hyname")
nm.close
set nm=nothing%>(<%=hyrs("hybuycount")%>)</a>
</div></td>
<td height="22"><div align="center"><%=HyRs("hynumber")%> </div></td>
<td height="22" align="center"><%=hyrs("hytjnumber")%> </td>
<td height="22"> <div align="center">
<% =HyRs("addTime")%>
</div></td>
<td height="22" align="center">
<%if hyrs("IsApproved")=no then%><a href="hyconfirm2.asp?dlid=<%=tjnumber%>&id=<%=hyrs("id")%>&chk=1" onclick="return makesureConfirm();">开通</a><%else%>已开通 <%end if%>
</td>
<%
HyRs.movenext
i=i+1
x=x+1
wend %>
</tr>
<%
else
Response.Write "还没有确认的会员!<a href='javascript:history.back()'>返回</a>"
end if%>
</table>
<p></p>
<%if j>0 then%>
<table align="center">
<tr>
<form name="thisform1" method="Post" action="userman.asp?findcontent=<%=content%>">
<td>到第
<input type="text" name="pageno" value="<% =pageno%>" size="3">
页<a onclick="javascript:thisform1.submit();">GO</a> </font></td>
</form>
<td>第
<% =pageno %>页
/共
<% =total%>
页</font></td>
<% if pageno<=1 then %>
<td><font color="#cccccc">首页</font></td>
<td><font color="#cccccc">上一页</font></td>
<% else %>
<td><a href="userman.asp?pageno=1&findcontent=<%=content%>"><font face="Webdings" color="#FFFFFF">9</font>首页</font></a></td>
<td><a href="userman.asp?pageno=<%=pageno-1%>&findcontent=<%=content%>">上一页</font></a></td>
<%end if%>
<% if pageno>=total then %>
<td><font color="#cccccc">下一页</font></td>
<td><font color="#cccccc">尾页</font></td>
<%else%>
<td><a href="userman.asp?pageno=<%=pageno+1%>&findcontent=<%=content%>">下一页</font></a></td>
<td><a href="userman.asp?pageno=<%=total%>&findcontent=<%=content%>">尾页</font></a></td>
<% end if%>
</tr>
</table>
<%end if
end if%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -