📄 ad.asp
字号:
<!--#include file="conn.asp"-->
<!--#include file="session.asp"-->
<%
Set rs = Server.CreateObject("ADODB.Recordset")
sql="select * from ad order by ad_id desc"
rs.open sql,conn,1,3
%>
<%
const MaxPerPage=30
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="0" 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,"ad.asp"
showContent
showpage totalput,MaxPerPage,"ad.asp"
else
if (currentPage-1)*MaxPerPage<totalPut then
rs.move (currentPage-1)*MaxPerPage
dim bookmark
bookmark=rs.bookmark
showpage totalput,MaxPerPage,"ad.asp"
showContent
showpage totalput,MaxPerPage,"ad.asp"
else
currentPage=1
showpage totalput,MaxPerPage,"ad.asp"
showContent
showpage totalput,MaxPerPage,"ad.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="500" height="41">
<tr>
<td bgcolor="#EEEEEE" align="center" width="56" height="18">编号</td>
<td bgcolor="#EEEEEE" align="center" width="88" height="18">网站名字</td>
<td bgcolor="#EEEEEE" align="center" width="152" height="18">网站URL</td>
<td bgcolor="#EEEEEE" align="center" width="150" height="18">简介</td>
<td bgcolor="#EEEEEE" align="center" width="52" height="18">删除</td>
</tr>
<%do while not rs.eof%>
<tr>
<td bgcolor="#EEEEEE" align="center" width="56" height="19"><%=rs("ad_id")%></td>
<td bgcolor="#EEEEEE" align="center" width="88" height="19"><%=rs("ad_web")%></td>
<td bgcolor="#EEEEEE" align="center" width="152" height="19"><%=rs("ad_url")%></td>
<td bgcolor="#EEEEEE" align="center" width="150" height="19"><%=rs("ad_text")%></td>
<td bgcolor="#EEEEEE" align="center" width="52" height="19"><a href="delad.asp?ad_id=<%=rs("ad_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 + -