⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 board.asp

📁 一个功能强大
💻 ASP
字号:
<%@ Language=VBScript%>

<!--#include file=include/conn.asp -->
<!--#include file=include/config.asp -->
<%
PageShowSize = 10            '每页显示多少个页
MyPageSize   = 5           '每页显示多少条新闻
	
If Not IsNumeric(Request("page")) Or IsEmpty(Request("page")) Or Request("page") <=0 Then
MyPage=1
Else
MyPage=Int(Abs(Request("page")))
End if

set rs=server.CreateObject("ADODB.RecordSet")
rs.Source="select * from type order by typeorder"
rs.Open rs.Source,conn,1,1

dim ArraytypeID(10000),ArraytypeName(10000),Arraytypecontent(10000)
typeCount=rs.RecordCount
for i=1 to typeCount
ArraytypeID(i)=rs("typeID")
ArraytypeName(i)=rs("typeName")
Arraytypecontent(i)=rs("typecontent")
rs.MoveNext
next
rs.Close
%>
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>全部公告__<%=jjgn%></title>
<LINK href=news.css rel=stylesheet>
<style type="text/css">
.zbk1 {
	border: 1px solid #CCCCCC;
}
.zbk2 {
	border-top: 1px none #CCCCCC;
	border-right: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
	border-left: 1px solid #CCCCCC;
}
body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-image: url(zqcindex.files/bgz.gif);
}
</style>
</head>

<body topmargin="0">
<!--#include file=include/top.asp -->
<!--#include file=include/top2.asp -->
<table width="778" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="white" class="zbk2">
  <tr>
    <td><table width="100%"  border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td height="1" colspan="2"></td>
        </tr>
      <tr>
        <td width="200" valign="top"><table width="100%" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="white" class="zbk2" id="AutoNumber2" style="border-collapse: collapse">
          <%
set rs=server.CreateObject("ADODB.RecordSet") 
rs.Source="select * from board where inuse=1"
rs.Open rs.Source,conn,1,1
if not rs.EOF then
%>
          <tr>
            <td height=30 valign="middle" background="img/type_bg.gif"><p align="center"><strong>当前公告<br>
                        </strong></td>
          </tr>
          <tr>
            <td height="2" align=center style="WORD-WRAP: break-word"><table width="100%" border="0" align="center" cellpadding="3" cellspacing="0">
                <tr>
                  <td><div align="center"><strong><br>
                          <%=rs("title")%></strong><br>
                          <br>
                          <%=rs("content")%> <br>
                          <br>
              发布人:<%=rs("upload")%><br>
              时间:<%=rs("dateandtime")%> </div></td>
                </tr>
            </table></td>
          </tr>
          <%else
     rs.close
      set rs=nothing
      end if%>
        </table>
          <br></td>
        <td valign="top"><table width="100%" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="white" class="zbk2">
          <tr>
            <td height="30" background="img/type_bg.gif">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>当前位置:<a class="daohang" href="./" >网站首页</a>&gt;&gt;全部公告<font color=red></font></b></td>
          </tr>
          <tr>
            <td height="156"><div align="center">
                <table width="100%" height="62" border="0" align="center" cellpadding="0" cellspacing="0" id="AutoNumber3" style="border-collapse: collapse">
                  <tr>
                    <td height="8" valign=top></td>
                  </tr>
                  <tr>
                    <td height="52" valign=top><table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" width="100%" id="AutoNumber3" height="45">
                        <tr>
                          <td width="100%" height="45" valign="top"><%
set rs2=server.CreateObject("ADODB.RecordSet")
rs2.Source="select * from board order by ID DESC "
rs2.Open rs2.Source,conn,3,1

If Not rs2.eof then
rs2.PageSize     = MyPageSize
MaxPages         = rs2.PageCount
rs2.absolutepage = MyPage
total            = rs2.RecordCount
i = 0
do until rs2.Eof or i = rs2.PageSize
%>
                            <table width="100%" border="0" align="center" cellpadding="5" cellspacing="0" bgcolor="white" class="zbk1" style="border-collapse: collapse">
                                <tr>
                                  <td width="100%" height="28" align=center><strong><%=rs2("title")%></strong></td>
                                </tr>
                                <tr>
                                  <td width="100%" height="20"><%=rs2("content")%></td>
                                </tr>
                                <tr>
                                  <td height="20" align=center><div align="right">发布人:<%=rs2("upload")%> 发布时间:<%=rs2("dateandtime")%></div></td>
                                  </tr>
                              </table>
                              <%
rs2.MoveNext
i = i + 1
loop
%>
                          </td>
                        </tr>
                        <tr>
                          <td width="100%" height="22" colspan="2" align=center>共 <%=total%> 条,当前第 <%=Mypage%>/<%=Maxpages%> 页,每页 <%=MyPageSize%> 条   
                              <%
url="board.asp?"				
PageNextSize=int((MyPage-1)/PageShowSize)+1
Pagetpage=int((total-1)/rs2.PageSize)+1

if PageNextSize >1 then
PagePrev=PageShowSize*(PageNextSize-1)
Response.write "<a class=black href='" & Url & "page=" & PagePrev & "' title='上" & PageShowSize & "页'>上一翻页</a> "
Response.write "<a class=black href='" & Url & "page=1' title='第1页'>页首</a> "
end if
if MyPage-1 > 0 then
Prev_Page = MyPage - 1
Response.write "<a class=black href='" & Url & "page=" & Prev_Page & "' title='第" & Prev_Page & "页'>上一页</a> "
end if

if Maxpages>=PageNextSize*PageShowSize then
PageSizeShow = PageShowSize
Else
PageSizeShow = Maxpages-PageShowSize*(PageNextSize-1)
End if
If PageSizeShow < 1 Then PageSizeShow = 1
for PageCounterSize=1 to PageSizeShow
PageLink = (PageCounterSize+PageNextSize*PageShowSize)-PageShowSize
if PageLink <> MyPage Then
Response.write "<a class=black href='" & Url & "page=" & PageLink & "'>[" & PageLink & "]</a> "
else
Response.Write "<B>["& PageLink &"]</B> "
end if
If PageLink = MaxPages Then Exit for
Next

if Mypage+1 <=Pagetpage  then
Next_Page = MyPage + 1
Response.write "<a class=black href='" & Url & "page=" & Next_Page & "' title='第" & Next_Page & "页'>下一页</A>"
end if

if MaxPages > PageShowSize*PageNextSize then
PageNext = PageShowSize * PageNextSize + 1
Response.write " <A class=black href='" & Url & "page=" & Pagetpage & "' title='第"& Pagetpage &"页'>页尾</A>"
Response.write " <a class=black href='" & Url & "page=" & PageNext & "' title='下" & PageShowSize & "页'>下一翻页</a>"
End if

else
Response.write "<tr><td valign=top height=80>&nbsp;暂无信息</td></tr>"				
End If
rs2.close

%>
                          </td>
                        </tr>
                    </table></td>
                  </tr>
                </table>
            </div></td>
          </tr>
        </table>
          <br></td>
      </tr>
    </table></td>
  </tr>
</table>
<!--#include file=include/bottom.asp -->
</body>

</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -