简单分页函数一 常用_应用技巧

复制代码 代码如下:

<%
      page=trim(request("page"))
      maxperpage=40
      first=true
      last=true
      dim rs
      set rs=server.CreateObject("adodb.recordset")
      sql="select id,title,add1,cartype,isred,enterdate,hits from newnews where classtype=0 and pass=1 order by id desc"
rs.open sql,conn,1,1
        rs.pagesize=maxperpage
        totalpage=rs.pagecount
        if len(page)=0 then
        intpage=1
        first=false
        else
            if cint(page)<=1 then
            intpage=1
            first=false
            else
                if cint(page)>=rs.pagecount then
                intpage=rs.pagecount
                last=false
                else
                intpage=cint(page)
                end if
            end if
        end if            
        if not rs.eof then
        rs.absolutepage=intpage
        end if
        for a=1 to maxperpage
        if rs.eof then exit for
        %>
        <tr <%if (a mod 2)=0 then
      response.write "bgcolor=#ffffff"
      else
      response.write "bgcolor=#f6f6f6"
      end if
      %>>
          <td height="20"><div align="center"><%=a%></div></td>
          <td><div align="center">
            <%add=rs("add1")
        substring add,4
        %>
          </div></td>
          <td>
          <a href="displaynews.asp?id=<%=rs("id")%>" target="_blank">          
         <%
        if rs("isred")=True then
        %>
        <font color="red">
        <%title=rs("title")
        substring title,20
        %></font>
        <%else
        title=rs("title")
        substring title,20
        %>
        <%
        end if
        %>        
        </a></td>
          <td><div align="center"><%=rs("cartype")%></div></td>
          <td><div align="center">
              <%thetime=rs("enterdate")
                    themon=datepart("m",thetime)
                    if len(themon)<2 then themon="0"&themon
                    theday=datepart("d",thetime)
                    if len(theday)<2 then theday="0"&theday
                    ther=themon&"-"&theday
                    response.write ther
                %>
          </div></td>
          <td><div align="center"><%=rs("hits")%></div></td>
        </tr>
        <%
      rs.movenext
      if rs.eof then exit for
      next        
      %>
      </table>
      <table width="100%" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td height="5"></td>
      </tr>
    </table>
     <table width="100%" border="0" cellpadding="0" cellspacing="0">
            <tr>
              <td height="20" bgcolor="#f6f6f6">
                  <div align="center">
                    <%if rs.pagecount>0 then %>
              共有<%=rs.recordcount%>条|当前页<%=intpage%>/
              <%

=rs.pagecount%>

              <% end if %>
              <%if intpage>1 then%>
              <a href="<%request.ServerVariables("SCRIPT_NAME")%>?

page=1">首页</a>
              <%else%>
              首页
              <%end if%>
              <%if first then%>
              <a href="<%request.ServerVariables("SCRIPT_NAME")%>?

page=<%=intpage-1%>">上一页</a>
              <%else%>
              上一页
              <%end if%>
              <%if last and intpage<rs.pagecount then%>
              <a href="<%request.ServerVariables("SCRIPT_NAME")%>?

page=<%=intpage+1%>">下一页</a>
              <%else%>
              下一页
              <%end if%>
              <%if intpage<rs.pagecount then%>
              <a href="<%request.ServerVariables("SCRIPT_NAME")%>?

page=<%=rs.pagecount%>">尾页</a>
              <%else%>
              尾页
              <%end if%>
              转到
              <select onChange="location=this.options

[this.selectedIndex].value">
                <%for b=1 to rs.pagecount
     if b=intpage then%>
                <option value="<%request.ServerVariables("SCRIPT_NAME")%>?page=<%=b%>" selected>

                第<%=b%>页</option>
                <% else %>
                <option value="<%request.ServerVariables("SCRIPT_NAME")%>?page=<%=b%>">第<%=b%>页

                </option>
                <%end if
     next%>
              </select>
    </div></td>
            </tr>
      </table>    
</body>
<%
rs.close
set rs=nothing
conn.close
set conn=nothing
%>

时间: 2024-10-16 05:58:54

简单分页函数一 常用_应用技巧的相关文章

简单分页函数一 常用

复制代码 代码如下: <%       page=trim(request("page"))       maxperpage=40       first=true       last=true       dim rs       set rs=server.CreateObject("adodb.recordset")       sql="select id,title,add1,cartype,isred,enterdate,hits f

PHP实现的简单分页类及用法示例_php技巧

本文实例讲述了PHP实现的简单分页类及用法.分享给大家供大家参考,具体如下: <?php /* * 使用: * $page = new Page(连接符,查询语句,当前页码,每页大小,页码符) * 连接符:一个MYSQL连接标识符,如果该参数留空,则使用最近一个连接 * 查询语句:SQL语句 * 当前页码:指定当前是第几页 * 每页大小:每页显示的记录数 * 页码符:指定当前页面URL格式 * * 使用例子: * $sql = "select * from aa"; * $pag

PHP简单分页函数代码总结

例子一,这个分页函数就有连接数据库再查看 代码不详细解说了,注释里有  代码如下 复制代码 <?php //page当前页,num每页的页数 $page=isset($_GET['page'])?intval($_GET['page']):1; $num=5; $conn = mysql_connect('127.0.0.1','root',''); if (!$conn) { die('Could not connect:'.mysql_error()); } mysql_select_db(

asp.net 通用分页显示辅助类(改进版)_实用技巧

闲暇时重新再看之前很多项目代码的时候,发现很多总是有那么点缺陷的代码,如芒刺入骨,令人心烦.挣扎良久,苦口婆心劝荐自己今后要争取把某些代码写的更易用更灵活更完善一些.比如在这篇已经提及到的通用客户端分页显示辅助类(AspNetPager),在大大小小项目中出现频率非常高,但是显然对分页形式的选择和样式的控制弱了点.虽然之前这个功能的实现都是按照实际项目的需求来实现的,对旧项目没有影响,但是这也不能成为该功能没有充分实现扩展性和通用性的理由,这点向来自傲的楼猪也不得不承认. 1.分页模式和样式扩展

asp.net 文章分页显示实现代码_实用技巧

复制代码 代码如下: protected void Page_Load(object sender, EventArgs e) { string str = "事情发生在5月14日晚上23:30分,廊坊师范学院1号楼宿舍发生了恶性打架杀人事件,因1号楼较为复杂,有体育生.英语学院.教育学院等学生住宿,当时情况较为混乱.被害者是一名10级接本的体育生(马上面临毕业)和一名11级教育学院的新生,双方产生 矛盾原因目前不明,当场造成2死1重伤,伤口刀刀致命.其中一人被凶手割断喉部大动脉,未经抢救,当场

php分页函数完整实例代码_php技巧

本文分享一例php分页函数完整实例代码,使用此函数实现分页效果很不错.分享给大家供大家参考. 具体功能代码如下: <?php /* * Created on 2011-07-28 * 使用方法: require_once('mypage.php'); $result=mysql_query("select * from mytable", $myconn); $total=mysql_num_rows($result); //取得信息总数 pageDivide($total,10

天枫常用的ASP函数封装如下_应用技巧

复制代码 代码如下: <% '------------------------------------- '天枫ASP class v1.0,集常用asp函数于一体 '天枫版权所有'QQ:76994859 EMAIL:Chenshaobo@gmail.com '所有功能函数名如下: ' StrLength(str) 取得字符串长度 ' CutStr(str,strlen) 字符串长度切割 ' CheckIsEmpty(tstr) 检测是否为空 ' isInteger(para) 整数检验 ' C

ASP GetRef 函数指针试探_应用技巧

GetRef 函数 返回一个指向一过程的引用,此过程可绑定某事件. Set object.eventname = GetRef(procname) 参数 object 必选项.事件所关联的对象的名称. eventname 必选项.要与函数绑定的事件的名称. procname 必选项.该字符串中包含 Sub 或 Function 过程的名称,该过程与事件关联. 说明 GetRef 函数可以用来将 VBScript 过程 (Function 或 Sub) 与 DHTML (动态 HTML)页面中可用

在ASP中使用均速分页法提高分页速度的方法_应用技巧

均速分页法 一.适用范围 均速分页法主要适用于文章系统,新闻系统等排序方法固定的ASP+ACCESS应用 二.特点说明     很多用过一些文章系统或是新闻系统的朋友知道,一般的文章系统或是新闻系统,在分类分页时,通常是通过读取数据库中满足条件的排序后数据,然后根据请求页号,通过定位操作,指向某条数据,并且开始读取这条数据后面的若干条数据作为一页.这种分页方法,原理简单,但是存在的问题是每次都需要把数据库中满足条件的排序后数据都读取出来,如果有两千条数据,这个还好,如果有两万条呢?显示,这会占用