asp分页代码

各位朋友,我是从ACCESS数据库里调用图片和名称,显示的方式就是图片的下面显示名称,横向重复3次,再纵向重复4次,谁能给一个完整代码呀?
或者发去我邮箱:wainnnni@163.com 谢谢,解决问题后加分。

<%
function page(a,RCount,PCount,P,unl)'--------------分页函数
if a=1 then
if p=1 then
show= "<input type=""submit"" name=""p1"" value=""首页"" disabled >"
else
show= "<input type=""submit"" name=""p1"" value=""首页"" onClick=""location.href='"&unl&"1';"" >"
end if
if p>1 then
show=show+" <input type=""submit"" name=""p2"" value=""上一页"" onClick=""location.href='"&unl&p-1&"';"">"
else
show=show+" <input type=""submit"" name=""p2"" value=""上一页"" disabled >"
end if
if p<PCount then
show=show+" <input type=""submit"" name=""p3"" value=""下一页"" onClick=""location.href='"&unl&p+1&"';"">"
else
show=show+" <input type=""submit"" name=""p3"" value=""下一页"" disabled >"
end if
if p>=PCount then
show=show+" <input type=""submit"" name=""p4"" value=""末页"" disabled>"
else
show=show+" <input type=""submit"" name=""p4"" value=""末页"" onClick=""location.href='"&unl&PCount&"';"">"
end if
show=show+" 当前页"&P&"/"&PCount&" 记录总数"&RCount
end if
if a=2 then
show="<span class=""text"">"
show=show+"共有"&rcount&"个记录"
if p=1 then
show=show+" | 首页 "
else
show=show+" | <a href='"&unl&"1' class='text'>首页</a> "
end if
if p>1 then
show=show+"| <a href='"&unl&p-1&"' class='text'>上一页</a> "
else
show=show+"| 上一页 "
end if
if p<pcount then
show=show+"| <a href='"&unl&p+1&"' class='text'>下一页</a> "
else
show=show+"| 下一页 "
end if
if p>=pcount then
show=show+"| 尾页 "
else
show=show+"| <a href='"&unl&pcount&"' class='text'>尾页</a> "
end if
show=show+"| 页次:"&p&"/"&pcount&"页 | 共"&pcount&"页"
show=show+"</span>"
end if
if a=3 then
show="<span class=""text"">"
BlockPage=Int((P-1)/10)*10+1
IF BlockPage = 1 Then
show=show+ "<< "
else
show=show+ "<a href="&unl&BlockPage-1&" class=""text""><<</a> "
end if
i=1
Do Until i > 10 OR BlockPage > PCount
IF BlockPage=int(P) Then
show=show+ "<font color=red> "&BlockPage&"</font> "
else
show=show+ "<a href="&unl&BlockPage&" class=""text""> "&BlockPage&"</a> "
end if
BlockPage=BlockPage+1
i = i + 1
Loop
if pcount>10 then
show=show+ "...<a href="&unl&pcount&" class=""text"">"&pcount&"</a> "
end if
if BlockPage>pcount then
show=show+ " >> "
else
show=show+ " <a href="&unl&BlockPage&" class=""text"">>> </a>"
end if
show=show+"</span>"
end if
response.write show
end function

%>

参考资料:http://www.jw112.com/asp/html/12650.htm

温馨提示:内容为网友见解,仅供参考
无其他回答

ASP 分页代码 (20分)
intTotalRecords = rs.RecordCount rs.PageSize = intPageSize intTotalPages = rs.PageCount If intCurrentPage > intTotalPages Then intCurrentPage = intTotalPages If intTotalRecords > 0 Then rs.AbsolutePage = intCurrentPage strOut(0) = strOut(0) & "共 " & intTotalRecords & " 条...

谁能教我aspvb分页代码
分页方案一:(利用Not In和SELECT TOP分页)语句形式:SELECT TOP 页大小 FROM TestTable WHERE (ID NOT IN (SELECT TOP 页大小*页数 id FROM 表 ORDER BY id))ORDER BY ID --- 分页方案二:(利用ID大于多少和SELECT TOP分页)SELECT TOP 页大小 FROM TestTable WHERE (ID > (SELECT MAX(id...

ASP根据长文章内容分页代码
比如定义一页显示c个字符,然后第一页a=0,第二页a=a+c,第三页就是a=c*2

asp分页显示代码问题求助
多年没写asp了,下面的代码把关键的部分写出来了,应该是可以看懂的了。<%'连接数据库等操作省略,打开数据库等省略'rs为打开数据库的对象const pz=13 '这里定义分页数据,即每页多少条数据rs.pagesize=pz '这里设置分页的数量,asp分页必须rs.absolutepage=nowpage '这里的nowpage是用来获取当...

asp内容分页代码
Page = CInt(Request("Page")) '接收PAGE并化为数字型赋给PAGE变量 if Page > rs.PageCount then '如果接收的页数大于总页数 rs.AbsolutePage = rs.PageCount '设置当前显示页等于最后页 elseif Page <= 0 then '如果page小于等于0 Page = 1 '设置PAGE等于第一页 else rs.AbsolutePage = ...

ASP分页问题(每页的页码显示个数)
end if '===分页定义结束%> <% '===打开数据库数据表,要以这种方式打开 set rs=server.createobject("adodb.recordset")sql="select * from * where * order by * "rs.open sql,conn,1,1 > <%'===分页类代码开始,需放在数据库数据表打开后 if err.number<>0 then response.write...

ASP程序文章太长怎样分页
sContent="abc|||123|||456"'当然三个|||是自己手动加的,就是您想分页的地方,ContentStr=split(sContent,"|||")if request("page")="" then pagenum=0 else if cint(request("page"))>cint(ubound(ContentStr)) then pagenum=ubound(ContentStr)else pagenum=request("page")end i...

关于ASP分页显示
你可以在存储过程中进行分页 SET QUOTED_IDENTIFIER ON GO SET ANSI_NULLS ON GO ALTER proc PrcZyqPageCount tblName varchar(255), -- 表名 strGetFields varchar(2000) = '*', -- 需要返回的列 fldName varchar(255)='', -- 排序的字段名 PageSize int = 10, --...

asp文章按行分页怎样实现分页
参考这段代码吧. <!DOCTYPE html PUBLIC "-\/\/W3C\/\/DTD XHTML 1.0 Transitional\/\/EN" "http:\/\/www.w3.org\/TR\/xhtml1\/DTD\/xhtml1-transitional.dtd">IT知道网第一页 上一页 下一页 最后一页 第页\/共页

请教高手我这个程序asp分页该怎么写??100分
看一下李佳ASP视频教程,里面分页讲的很祥细!!人家写给你的,你要是能看懂 那就说明你会了 会SQL语句 对recordset对象很理解 否则的话,写给你 也没多大的作用

相似回答
大家正在搜