程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> 關於ASP編程 >> ASP實現長文章手動分頁的代碼

ASP實現長文章手動分頁的代碼

編輯:關於ASP編程

       <% 

    set recordset1=server.createobject("adodb.recordset")
    exec="SELECT * FROM news  where id="&id
    recordset1.Open exec,conn,1,1
    %>
     <table width="85%" border="0" align="center" cellpadding="3" cellspacing="0">
              <tr>  <td >
    .......

    <%
    If Request("page")="" Then
    pageNum=0
    Else
    pageNum=Request("page")
    End if
    Content=Replace(recordset1("content"),"","|||")
    ContentStr=split(Content,"|||")
    For i=pageNum to pageNum
    %>
    <%=ContentStr(i)%>
    <% Next %>
                </td>
              </tr>
     <%if ubound(ContentStr)>=1 then%>
              <tr>
                <td height="30" >本文共分
    <%
    For p = 0 to ubound(ContentStr)
    if p+1= Request("page")+1 then
    a="<font color=red>"
    aa="</font>"
    else
    a=""
    aa=""
    end if
    %>
                  <a href="detail.asp?ID=<%=request("ID")%>&page=<%=p%>"><%=a%><%=p+1%><%=aa%></a>
                  <% Next %>
                  頁 </td>
              </tr>
              <%end if%>

             添加文章時,在想分頁的地方,加入分割符 即可。 

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved