| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 549 人关注过本帖
标题:[求助]留言分页处理问题
只看楼主 加入收藏
威龙嘉少
Rank: 1
等 级:新手上路
帖 子:205
专家分:0
注 册:2007-9-24
收藏
 问题点数:0 回复次数:6 
[求助]留言分页处理问题

错误类型:
Microsoft VBScript 运行时错误 (0x800A000B)
被零除
/liuyan0.asp, 第 116 行


浏览器类型:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)
这是我做留言分页处理的时候弹出的错误提示,有谁知道是怎么回师啊,帮帮忙,指教 下啊,谢谢:
第116行就是这句:if (totalput mod listnum )= 0 then
currentpage=totalput \ listnum
完整代码:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%
dim totalput
dim currentpage
dim totalpages
if not isempty(request.QueryString("page")) then
currentpage=cint(request.QueryString("page"))
else
currentpage=1
end if

%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style type="text/css">
<!--
body,td,th {
font-size: 18px;
color: #FF0000;
}
body {
background-image: url(image/000.jpg);
background-repeat: repeat;
}
body {
background-attachment: fixed;
background-color: #CCCCCC;
background-image: url(image/000.jpg);
background-repeat: repeat;
}
-->
</style>
</head>

<body>
<form id="form1" name="form1" method="post" action="liuyan1.asp">
<table width="387" height="214" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#FF0000">
<tr>
<td width="143" height="36">&nbsp;用户名:</td>
<td width="168"><label>
<input type="text" name="name" />
</label></td>
</tr>
<tr>
<td height="31">&nbsp;密&nbsp; 码:</td>
<td><label>
<input type="password" name="pwd" />
</label></td>
</tr>
<tr>
<td height="67">&nbsp;留&nbsp; 言:</td>
<td><label>
<textarea name="ly" cols="20"></textarea>
</label></td>
</tr>
<tr>
<td bordercolor="#FF0000">&nbsp;性&nbsp; 别:</td>
<td><label>
<input type="radio" name="sex" value="男" />

</label>
<label>
<input type="radio" name="sex" value="女" />
女</label></td>
</tr>
<tr>
<td colspan="2" bordercolor="#FF0000"><label>
<input type="submit" name="Submit" value="提交" />
</label>
<label>
<input type="reset" name="Submit2" value="重置" />
</label></td>
</tr>
</table>
<%
set conn=server.createobject("adodb.connection")
DSNtemp = "Driver={Microsoft Access Driver (*.mdb)};"
DSNtemp = DSNtemp & "DBQ=" & server.mappath("学生.mdb")
conn.open DSNtemp
set rs=conn.execute("select * from ly order by id desc")
if rs.eof and rs.bof then
response.Write("暂时还没有任何留言!")
else
response.Write("<div align='center'>")
do while not rs.eof
response.Write("<hr / color='blue' width='60%'>")
response.Write("<table border='1' bordercolor='red' width='60%'>")
response.Write("<tr>")
response.Write("<td>编号:</td>"&"<td>"&rs("id")&"</td>")
response.Write("</tr>")
response.Write("<tr>")
response.Write("<td>姓名:</td>"&"<td>"&rs("name")&"</td>")
response.Write("</tr>")
response.Write("<tr>")
response.Write("<td>留言:</td>"&"<td>"&rs("ly")&"</td>")
response.Write("</tr>")
response.Write("<tr>")
response.Write("<td>性别:</td>"&"<td>"&rs("sex")&"</td>")
response.Write("</tr>")
rs.movenext
response.Write("</table>")
loop

response.Write("</div>")
end if
%>
<%
totalput=rs.recordcount
if currentpage<1 then
currentpage=1
end if
if (currentpage-1)*listnum>totalput then
if (totalput mod listnum )= 0 then
currentpage=totalput \ listnum
else
currentpage=totalput \ listnum +1
end if
end if
if currentpage=1 then
showpage totalput,listnum,"liuyan0.asp"
if (currentPage-1)*listnum<totalPut then
rs.move (currentPage-1)*listnum
showpage totalput,listnum,"liuyan0.asp"
else
currentpage=1
showpage totalput,listnum,"liuyan0.asp"
end if
end if
rs.close
conn.close
set rs=nothing
set con=nothing
%>
</form>
<%
function showpage(totalnumber,listnum,filename)
dim n
if totalnumber mod listnum=0 then
n=totalnumber \ listnum
else
n=totalnumber \ listnum + 1
end if
response.write "<form method=post action="&filename&">"
response.write " "
if CurrentPage<2 then
response.write "<font color='#000080'>首页 上一页</font> "
else
response.write "<a href="&filename&"?page=1>首页</a> "
response.write "<a href="&filename&"?page="&CurrentPage-1&">上一页</a> "
end if
if n-currentpage<1 then
response.write "<font color='#000080'>下一页 尾页</font>"
else
response.write "<a href="&filename&"?page="&(CurrentPage+1)&">下一页</a> "
response.write "<a href="&filename&"?page="&n&">尾页</a>"
end if
response.write "<font color='#000080'> 共<b>"&totalnumber&"</b>条留言 每页<b>"&listnum&"</b>条留言</font> "
response.write "<font color='#000080'>转到:</font><input class=smallInput type='text' name='page' size=4 maxlength=10 value="&Currentpage&">"
response.write "<input class=buttonface type='submit' value='Go' name='cndok'></form>"
end function
%>
<p>&nbsp;</p>
</body>
</html>

搜索更多相关主题的帖子: 留言 
2007-10-04 10:48
威龙嘉少
Rank: 1
等 级:新手上路
帖 子:205
专家分:0
注 册:2007-9-24
收藏
得分:0 
怎么贴上来就成了这样了,郁闷
2007-10-04 10:49
威龙嘉少
Rank: 1
等 级:新手上路
帖 子:205
专家分:0
注 册:2007-9-24
收藏
得分:0 
错误类型:Microsoft VBScript 运行时错误 (0x800A000B)被零除/liuyan0.asp, 第 116 行浏览器类型:Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) 这是我做留言分页处理的时候弹出的错误提示,有谁知道是怎么回师啊,帮帮忙,指教 下啊,谢谢:第116行就是这句:
if (totalput mod listnum )= 0 then currentpage=totalput \ listnum
这是错误类型
2007-10-04 10:50
威龙嘉少
Rank: 1
等 级:新手上路
帖 子:205
专家分:0
注 册:2007-9-24
收藏
得分:0 
完整代码:
<%
set conn=server.createobject("adodb.connection")
DSNtemp = "Driver={Microsoft Access Driver (*.mdb)};"
DSNtemp = DSNtemp & "DBQ=" & server.mappath("学生.mdb")
conn.open DSNtemp
set rs=conn.execute("select * from ly order by id desc")
if rs.eof and rs.bof then
response.Write("暂时还没有任何留言!")
else
response.Write("<div align='center'>")
do while not rs.eof
response.Write("<hr / color='blue' width='60%'>")
response.Write("<table border='1' bordercolor='red' width='60%'>")
response.Write("<tr>")
response.Write("<td>编号:</td>"&"<td>"&rs("id")&"</td>")
response.Write("</tr>")
response.Write("<tr>")
response.Write("<td>姓名:</td>"&"<td>"&rs("name")&"</td>")
response.Write("</tr>")
response.Write("<tr>")
response.Write("<td>留言:</td>"&"<td>"&rs("ly")&"</td>")
response.Write("</tr>")
response.Write("<tr>")
response.Write("<td>性别:</td>"&"<td>"&rs("sex")&"</td>")
response.Write("</tr>")
rs.movenext
response.Write("</table>")
loop

response.Write("</div>")
end if
%>
<%
totalput=rs.recordcount
if currentpage<1 then
currentpage=1
end if
if (currentpage-1)*listnum>totalput then
if (totalput mod listnum )= 0 then
currentpage=totalput \ listnum
else
currentpage=totalput \ listnum +1
end if
end if
if currentpage=1 then
showpage totalput,listnum,"liuyan0.asp"
if (currentPage-1)*listnum<totalPut then
rs.move (currentPage-1)*listnum
showpage totalput,listnum,"liuyan0.asp"
else
currentpage=1
showpage totalput,listnum,"liuyan0.asp"
end if
end if
rs.close
conn.close
set rs=nothing
set con=nothing
%>
</form>
<%
function showpage(totalnumber,listnum,filename)
dim n
if totalnumber mod listnum=0 then
n=totalnumber \ listnum
else
n=totalnumber \ listnum + 1
end if
response.write "<form method=post action="&filename&">"
response.write " "
if CurrentPage<2 then
response.write "<font color='#000080'>首页 上一页</font> "
else
response.write "<a href="&filename&"?page=1>首页</a> "
response.write "<a href="&filename&"?page="&CurrentPage-1&">上一页</a> "
end if
if n-currentpage<1 then
response.write "<font color='#000080'>下一页 尾页</font>"
else
response.write "<a href="&filename&"?page="&(CurrentPage+1)&">下一页</a> "
response.write "<a href="&filename&"?page="&n&">尾页</a>"
end if
response.write "<font color='#000080'> 共<b>"&totalnumber&"</b>条留言 每页<b>"&listnum&"</b>条留言</font> "
response.write "<font color='#000080'>转到:</font><input class=smallInput type='text' name='page' size=4 maxlength=10 value="&Currentpage&">"
response.write "<input class=buttonface type='submit' value='Go' name='cndok'></form>"
end function
%>
<p>&nbsp;</p>
</body>
</html>
2007-10-04 10:51
yms123
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:209
帖 子:12488
专家分:19042
注 册:2004-7-17
收藏
得分:0 
if (currentpage-1)*listnum>totalput then
if (totalput mod listnum )= 0 then
currentpage=totalput \ listnum
else
currentpage=totalput \ listnum +1
end if
end if
if totalnumber mod listnum=0 then
n=totalnumber \ listnum
else
n=totalnumber \ listnum + 1
end if
很明显楼主这两处出的错误,其中listnum可能为0所以出现被0除错误。
2007-10-04 10:55
威龙嘉少
Rank: 1
等 级:新手上路
帖 子:205
专家分:0
注 册:2007-9-24
收藏
得分:0 

那要怎么搞才可以啊,请指教啊!

2007-10-04 18:55
yms123
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:209
帖 子:12488
专家分:19042
注 册:2004-7-17
收藏
得分:0 
http://bbs.bc-cn.net/viewthread.php?tid=37557
还是推荐楼主去看看我写的分页类
2007-10-04 20:55
快速回复:[求助]留言分页处理问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.014255 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved