http:zhidao.baidu.comquestion76834299.html?si=5 能不能分页呀?搜了好多还只有你的能用!

http:zhidao.baidu.comquestion76834299.html?si=5 能不能分页呀?搜了好多还只有你的能用!,第1张

建立access的数据库news,还有表news,表的字段(id,title),id唯一,输入数据保存,用下面代码可查询,可分页

-----------------------下面保存为search.asp--------------------------

<html>

<head>

<meta http-equiv="Content-Type" content="text/htmlcharset=gb2312">

<title>文件</title>

</head>

<body bgcolor="#ffffff">

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<script>

function btn_ck_bh_Click()

{

var cx = document.form1.cxsj.value

form1.action ="search.asp?cx="+cx

}

</script>

<table border="1" cellspacing="0" bgcolor="#F0F8FF" bordercolorlight="#4DA6FF" bordercolordark="#ECF5FF" width="88%" style="word-break:break-all">

<tr>

<td width="778" align="center" colspan="7">

<form method="POST" name="form1" action=search.asp>

<p>输入搜索内容:<input type="text" name="cxsj" size="20"><input type="submit" value="提交" name="B1" LANGUAGE="javascript" onclick="btn_ck_bh_Click()">

<input type="reset" value="重写" name="B2"></p>

</form>

</td>

</tr>

</table>

<table border="1" cellspacing="0" bgcolor="#F0F8FF" bordercolorlight="#4DA6FF" bordercolordark="#ECF5FF" width="88%" style="word-break:break-all">

<tr>

<td width="8%" align="center"><strong><font color="#0080C0">ID 号</font></strong></td>

<td width="58%" align="center"><strong><font color="#0080C0">标 题</font></strong></td>

<td width="8%" align="center"><strong><font color="#0080C0">修 改</font></strong></td>

<td width="8%" align="center"><strong><font color="#0080C0">删 除</font></strong></td>

</tr>

<%

'数据库查询

'获得搜索内容

cx = request("cx")

dim pageCount

'把page转换成整数

page = cint(request("page"))

set conn=server.createobject("adodb.connection")'

set rs=server.createobject("adodb.recordset")

conn.open "DBQ=" &server.mappath("./news.mdb") &"DefaultDir=DRIVER={Microsoft Access Driver (*.mdb)}"

' 获取产品的名字记录集(从 news表中)

if cx <>"" then

sql = "select * from news where title like '%"&cx&"%' order by id desc"

else

sql ="select * from news order by id desc"

end if

rs.open sql,conn,3,3

'如果没有数据记录

if rs.bof then

errmsg=errmsg+"<br>"+"<li>"+keyword+"没有记录,请返回!!"

response.write errmsg

response.end

end if

' 设置记录集在每页的总行数,也就是 PageSize属性

RS.PageSize=40

'把rs.pageCount转换成整数和page才能作比较

pageCount = cint(rs.pageCount)

' 设置当前的页号( AbsolutePage属性)

if page = 0 then

page =1

end if

RS.AbsolutePage = page

x=1

' 显示当前页中的所有记录( PageSize中设置的行数)

WHILE NOT RS.EOF AND NumRows<RS.PageSize

%>

<tr onmouseover="this.bgColor='#99ccff'" onmouseout="this.bgColor=''">

<td width="8%"><p align="center"><%=rs("id")%></td>

<td width="58%"><a href="view.asp?id=<%=rs("id")%>" target="_blank"><%=rs("title")%></a></td>

<td width="8%" align="center"><a href="edit.asp?id="<%=rs("id")%>>修 改</a></td>

<td width="8%" align="center"><a href="delet.asp?id="<%=rs("id")%>>删 除</a></td>

</tr>

<%RS.MoveNext

NumRows=NumRows+1

WEND%>

<tr onmouseover="this.bgColor='#99ccff'" onmouseout="this.bgColor=''">

<td width="105%" align="center" colspan="6"></td></tr>

<tr>

<td width="105%" align="center" colspan="6">

<p align="center"><FONT color=#333333>共<%=PageCount%>页 第<%=page%>页★

<%if page=1 then%>首页<%end if%>

<%if page>1 then%>

<A HREF="search.asp?page=1&cx=<%=cx%>">首页</A>

<%end if%>★

<%if page>1 then%><A HREF="search.asp?page=<%=page-1%>&cx=<%=cx%>"><%end if%>上一页</a>

<%

dim pagewhere

dim p

p = 1

'把pagewhere转换成整数

'pagewhere = cint(request("pagewhere"))

pagewhere = pageCount

if pagewhere>0 then

for p=1 to pagewhere

if p <>page then%>

<A HREF="search.asp?page=<%=p%>&cx=<%=cx%>"><%=p%></a>

<%end if

if p =page then%>

<%=p%>

<% end if

next

end if%>

<%if page <PageCount then%>

<A HREF="search.asp?page=<%=page+1%>&cx=<%=cx%>">

<%end if %>下一页</A>★

<%if page=PageCount then%>尾页

<%end if%>

<%if page<PageCount then%>

<A HREF="search.asp?page=<%=PageCount%>&cx=<%=cx%>">尾页</A>

<%end if%>

</p></FONT></td></tr><tr>

<td width="105%" align="center" colspan="6">搜索内容:<%=cx%></td>

</tr>

</table></center></div>

</body></html>

<%

rs.close

Set rs=nothing

conn.close

set conn=nothing

%>

本来就是这样啊,你应该写成。

echo "<a href='phpwan.php?pageno=" . ($pageno+1) . "'>下一页</a>"

href="javascript:test()"可以调用js的test方法

onclick = "test()" 同样可以调用js的test方法

在href属性后面添加一个onclick属性就可以解决问题。href控制页面跳转路径 onclick控制调用js,解决方法不唯一但这种是最简单的。

<html>

<head>

<title>test</title>

</head>

<body>

<a href="#name" onclick="javascript:alertstr()">click</a>

<div style="height:5000px"></div>

<div id="name"></div>

<script type="text/javascript">

function alertstr(){

alert(1)

}

</script>

</body>

</html>


欢迎分享,转载请注明来源:优选云

原文地址:https://54852.com/hy/492957.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-04-03
下一篇2023-04-03

随机推荐

  • 控油的洗面奶多久用一次什么时候用最好

    主要是看皮肤状况,如果脸部经常出油,可以一天早晚各使用1次。基本方法取适量水扑打于脸部使脸部湿润,取适量洗面奶(一般3至5厘米)于手心,加水揉搓至泡沫状,涂抹于脸部并按摩一分钟,用清水冲洗干净即可。使用时,先将脸打湿,湿润面部后,在额头,鼻

    2023-12-14
    26000
  • 菲洛嘉的眼霜怎么样值不值得买

    很好很好很好!值得值得值得!我买的是360度雕塑那一款,配合the ordinary的咖啡因眼部精华一起用,效果非常好。大概用了三到四周的样子,眼睛就不像以前那么肿了,不过不确定单纯的菲洛嘉能不能去肿,因为咖啡因的功效就是这个,之所以和菲洛

    2023-12-14
    46400
  • 什么眼霜适合长期对电脑的人用

    从去皱效果、保湿度、延展性三个方面来测评眼霜,它们成功入围!跟着小柴犬买,护肤零风险~ 1欧莱雅紫熨斗眼霜 2薇诺娜紧致眼霜 3理肤泉视黄醇抗皱修护眼霜 4希思黎抗皱修活御制眼唇霜 5strivectin SD抗皱眼霜 6佰草集官方御五

    2023-12-14
    24600
  • 珀莱雅高端系列是哪款,珀莱雅最高端是哪款

    一直以来,大众都以为珀莱雅主要生产平价、低端系列的护肤品,其实珀莱雅近些年来也开始扩展高端护肤线,打造高端护肤品,那么,珀莱雅高端系列是哪款?没有了解过珀莱雅高端系列产品的人,自然不知道珀莱雅最高端是哪款?珀莱雅高端系列是红宝石及双抗系列,

    2023-12-14
    25400
  • 百雀羚帧颜肌底精华液和帧颜修护精华液哪个好用

    百雀羚帧颜肌底精华液更好用。1、百雀羚帧颜肌底精华液宝藏国货真的很让人惊喜,轻透肌底液质地,沁润呵护基底,而帧颜修护精华液清爽不油腻,涂抹在面部按摩后非常舒适,吸收快,所以百雀羚帧颜肌底精华液更好用。2、百雀羚帧颜肌底精华液价位不贵温和不刺

    2023-12-14
    24600
  • 柏氏化妆品厂家怎么联系

    那要看你在哪个城市啦,每个地区都有一个代理商,不用联系厂家的,你不知道你当地的代理商****,那你就买本近期的红妆日化,那上边有很多代理商都在招加盟店的广告,做化妆品生意的都知道啊。柏氏舒敏修护去红血丝系列感觉不怎么样,没什么效果,我朋友用

    2023-12-14
    19100
  • 什么睫毛膏不晕妆 不晕妆的睫毛膏推荐

    睫毛膏是很受大家欢迎与喜爱的一种化妆品,睫毛膏可以使我们的睫毛变得又浓密又纤长,晕妆在夏天尤为常见,持久不晕染的睫毛膏是大家都感兴趣的。什么睫毛膏不晕妆1、Kiss Me防水睫毛膏 参考价:¥96 曾多次荣登日本Cosme大赏榜单,

    2023-12-14
    17500
  • 新手开化妆品店要注意什么呢

    新手开化妆品店要注意什么呢?想要开一家自己的化妆品加盟店来创业,表面看起来很轻松简单,但是实际上真正经营起来的话,这里面的学问是有很多的。尤其是刚开始创业的人,由于经验不足,再加上资金也不充裕,所以,怎样使用小成本开好一家化妆品加盟店成

    2023-12-14
    22000
  • 过期化妆品是什么垃圾桶

    过期化妆品应该扔到红色垃圾桶中,在垃圾桶上,用中文和英文分别标注了“有害垃圾”的字样,还配有相对应的。根据国家制定的统一标准,有害垃圾用红色垃圾桶收集,可回收垃圾用蓝色垃圾桶收集,湿垃圾用绿色垃圾桶收集,干垃圾用灰色垃圾桶收集。虽然化妆品在

    2023-12-13
    16000

发表评论

登录后才能评论
保存