📄 savedaili.asp
字号:
<!--#include file="conn.asp"-->
<!--#include file="session.asp"-->
<%
Set rs = Server.CreateObject("ADODB.Recordset")
sql="select * from daili order by id desc"
rs.open sql,conn,1,3
%>
<%
const MaxPerPage=20
dim totalPut
dim CurrentPage
dim TotalPages
dim i,j
if not isempty(request("page")) then
currentPage=cint(request("page"))
else
currentPage=1
end if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<LINK href="style.css" rel=stylesheet>
</head>
<body>
<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="1" width="500">
<tr>
<td>
<p align="center"><%
if rs.eof and rs.bof then
response.write "<p align='center'> 还 没 有 任 何 新 闻</p>"
else
totalPut=rs.recordcount
totalPut=rs.recordcount
if currentpage<1 then
currentpage=1
end if
if (currentpage-1)*MaxPerPage>totalput then
if (totalPut mod MaxPerPage)=0 then
currentpage= totalPut \ MaxPerPage
else
currentpage= totalPut \ MaxPerPage + 1
end if
end if
if currentPage=1 then
showpage totalput,MaxPerPage,"savedaili.asp"
showContent
showpage totalput,MaxPerPage,"savedaili.asp"
else
if (currentPage-1)*MaxPerPage<totalPut then
rs.move (currentPage-1)*MaxPerPage
dim bookmark
bookmark=rs.bookmark
showpage totalput,MaxPerPage,"savedaili.asp"
showContent
showpage totalput,MaxPerPage,"savedaili.asp"
else
currentPage=1
showpage totalput,MaxPerPage,"savedaili.asp"
showContent
showpage totalput,MaxPerPage,"savedaili.asp"
end if
end if
rs.close
end if
set rs=nothing
conn.close
set conn=nothing
sub showContent
dim i
i=0
%></td>
</tr>
</table>
</center>
</div>
<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="1" width="600" height="53">
<tr>
<td height="25" bgcolor="#EEEEEE" width="47" align="center">编号</td>
<td height="25" bgcolor="#EEEEEE" width="84" align="center">用户名</td>
<td height="25" bgcolor="#EEEEEE" width="84" align="center">代理类别</td>
<td height="25" bgcolor="#EEEEEE" width="84" align="center">代理级别</td>
<td height="25" bgcolor="#EEEEEE" width="82" align="center">OICQ</td>
<td height="25" bgcolor="#EEEEEE" width="113" align="center">申请时间</td>
<td height="25" bgcolor="#EEEEEE" width="60" align="center">操作情况</td>
<td height="25" bgcolor="#EEEEEE" width="38" align="center">删除</td>
</tr>
<%do while not rs.eof%>
<tr>
<td height="28" bgcolor="#EEEEEE" width="47" align="center"><%=rs("id")%></td>
<td height="28" bgcolor="#EEEEEE" width="84" align="center"><a class="red" href="editdaili.asp?id=<%=rs("id")%>"><%=rs("d_webname")%></a></td>
<td height="28" bgcolor="#EEEEEE" width="84" align="center"><%=rs("choose")%></td>
<td height="28" bgcolor="#EEEEEE" width="84" align="center"><%=rs("grade")%></td>
<td height="28" bgcolor="#EEEEEE" width="82" align="center"><%=rs("d_oicq")%></td>
<td height="28" bgcolor="#EEEEEE" width="113" align="center"><%=rs("d_time")%></td>
<td height="28" bgcolor="#EEEEEE" width="60" align="center"><%if not isnull(rs("cao")) then%>现代理<%else%><font color="#FF0000">准代理<%end if%></font></td>
<td height="28" bgcolor="#EEEEEE" width="38" align="center"><a href="deldaili.asp?id=<%=rs("id")%>&action=del">删除</a></td>
</tr>
<% i=i+1
if i>=MaxPerPage then exit do
rs.movenext
loop
%>
</table>
</center>
</div>
<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="0" width="500">
<tr>
<td>
<p align="center"><%
end sub
function showpage(totalnumber,maxperpage,filename)
dim n
if totalnumber mod maxperpage=0 then
n= totalnumber \ maxperpage
else
n= totalnumber \ maxperpage+1
end if
response.write "<form method=Post action="&filename&">"
response.write "<p align='center'><font color='#000080'>分页</font> "
if CurrentPage<2 then
response.write "<font color='#000080'>首页 上一页</font> "
else
response.write "<a href="&filename&"?page=1&>首页</a> "
response.write "<a href="&filename&"?page="&CurrentPage-1&">上一页</a> "
end if
if n-currentpage<1 then
response.write "<font color='#000080'>下一页 尾页</font>"
else
response.write "<a href="&filename&"?page="&(CurrentPage+1)
response.write ">下一页</a> <a href="&filename&"?page="&n&">尾页</a>"
end if
response.write "<font color='#000080'> 页次:</font><strong><font color=red>"&CurrentPage&"</font><font color='#000080'>/"&n&"</strong>页</font> "
response.write "<font color='#000080'> 共<b>"&totalnumber&"</b>条新闻 <b>"&maxperpage&"</b>条新闻/页</font> "
end function
%></td>
</tr>
</table>
</center>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -