📄 message_list.asp
字号:
<!--#include file="conn.asp"-->
<!--#include file="chkadmin.asp"-->
<!--#include file="inc/char.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<link href="../style.css" rel="stylesheet" type="text/css">
<STYLE>
BODY {
scrollbar-face-color : #96A2AD;
scrollbar-shadow-color : #96A2AD;
scrollbar-highlight-color : #96A2AD;
scrollbar-3dlight-color : #96A2AD;
scrollbar-darkshadow-color : #96A2AD;
scrollbar-track-color : #CCCCCC;
scrollbar-arrow-color : #FFFFFF;
}
</STYLE>
<SCRIPT language=JScript>
function del(id)
{
if ( confirm("您确定要删除此公告吗?"))
{
window.location.href = "message_del.asp?id=" + id
}
}
</SCRIPT>
</head>
<body>
<%dim sql,rs,n,totalrec,currentpage,rowcount,powers,onepage
onepage=10
sql="select * from Message order by ID desc"
set rs=server.createobject("adodb.recordset")
rs.cursorlocation = 3
rs.pagesize = onepage
rs.open sql,conn,1,1
if rs.eof and rs.bof then
response.Write "<tr bgcolor=#EEEEEE><td colspan=10><center>当前没有公告!</center></td></tr>"
else
if err.number<>0 then '错误处理
response.write "数据库操作失败:" & err.description
err.clear
else
if not (rs.eof and rs.bof) then '检测记录集是否为空
totalrec = RS.RecordCount 'totalrec:总记录条数
if rs.recordcount mod onepage = 0 then '计算总页数,recordcount:数据的总记录数
n = rs.recordcount\onepage 'n:总页数
else
n = rs.recordcount\onepage+1
end if
currentpage = request("page") 'currentpage:当前页
If currentpage <> "" then
currentpage = cint(currentpage)
if currentpage < 1 then
currentpage = 1
end if
if err.number <> 0 then
err.clear
currentpage = 1
end if
else
currentpage = 1
End if
if currentpage*onepage > totalrec and not((currentpage-1)*onepage < totalrec)then
currentPage=1
end if
rs.absolutepage = currentpage 'absolutepage:设置指针指向某页开头
rowcount = rs.pagesize
do while not rs.eof and rowcount > 0%>
<table width="95%" border="0" align="center" cellpadding="2" cellspacing="0">
<tr bgcolor="#708090">
<td bgcolor="#708090" class="TdBorderRB"><font color="#FFFFFF"><%=rs(1)%> (<%=rs(3)%>)</font></td>
<td width="40" align="center" bgcolor="#708090" class="TdBorderRB"><a href="message_edit.asp?id=<%=rs(0)%>"><font color="#FFFFFF">修改</font></a></td>
<td width="40" align="center" bgcolor="#708090" class="TdBorderB"><a href="javascript:del(<%=rs(0)%>)"><font color="#FFFFFF">删除</font></a></td>
</tr>
<tr bgcolor="#EEEEEE">
<td colspan="3" class="TdBorderB"><%=UBBCode(rs(2))%></td>
</tr>
</table>
<br>
<%rowcount=rowcount-1
rs.movenext
loop
end if
end if
end if
rs.close
set rs=nothing
conn.close
set conn=nothing
call listpages()%>
</body>
</html>
<%sub listPages()
if n <= 1 then exit sub
response.write("<table width=95% border=0 align=center cellpadding=2 cellspacing=1 bgcolor=#EEEEEE>")
response.write("<tr><td align=center bgcolor=#EEEEEE>共有"&totalrec&"条记录")
if currentpage = 1 then
response.write("<font color=darkgray> [首页] [上一页]</font>")
else
response.write(" [<a href="&request.ServerVariables("script_name")&"?Page=1>首页</a>]")
response.write(" [<a href="&request.ServerVariables("script_name")&"?Page="¤tpage-1&">上一页</a>]")
end if
if currentpage = n then
response.write(" <font color=darkgray>[下一页] [尾页]</font>")
else
response.write(" [<a href="&request.ServerVariables("script_name")&"?Page="¤tpage+1&">下一页</a>]")
response.write(" [<a href="&request.ServerVariables("script_name")&"?Page="&n&">尾页</a>]")
end if
response.write(" 当前为第"¤tpage&"页 共"&n&"页 "&onepage&"条记录/页 转到")
response.write("<select name=currentpage size=1 style=background-color:#eeeeee;color:#000000;font-size:12px onChange=javascript:window.location.href=this.options[this.selectedIndex].value>")
dim i
for i = 1 to n
response.write("<option value="&request.ServerVariables("script_name")&"?Page="&i)
if cint(currentpage)=cint(i) then
response.write(" selected")
end if
response.write(">第"&i&"页</option>")
next
response.write("</select></td></tr></table>")
end sub
response.End()%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -