浏览器类型:
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
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> </p>
</body>
</html>作者: FIFA2007 时间: 2010-1-8 07:20
错误类型: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
这是错误类型作者: 爱情无价 时间: 2010-1-8 07:20
那要怎么搞才可以啊,请指教啊!作者: ■.王锋◇ 时间: 2010-1-8 07:20
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除错误。作者: 一世豪杰 时间: 2010-1-8 07:20
完整代码:
<%
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> </p>
</body>
</html>作者: 欧阳风 时间: 2010-1-8 07:20
怎么贴上来就成了这样了,郁闷作者: ☆冬虫草☆ 时间: 2010-1-8 07:20
http://bbs.bc-cn.net/viewthread.php?tid=37557
还是推荐楼主去看看我写的分页类作者: 成哥 时间: 2010-2-3 16:05
我现在终于明白我缺乏的是什么了,正是楼主那种对真理的执着追求和楼主那种对理想的艰苦实践所产生的厚重感。