| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 883 人关注过本帖
标题:VBScript代码出错!
取消只看楼主 加入收藏
enirilt
Rank: 1
等 级:新手上路
帖 子:126
专家分:0
注 册:2006-11-29
结帖率:0
收藏
 问题点数:0 回复次数:4 
VBScript代码出错!


下面的代码不知那一块错了,运行时报错,帮我看看好吗?



错误类型:
Microsoft VBScript 运行时错误 (0x800A01A8)
缺少对象
/feishui/INC/namege.asp, 第 101 行



代码如下:第 101 行用红色标了!

<%
'if request.cookies("adminok")="" then
'response.redirect "login.asp"
'end if
%>
<!--#include file="conn.asp"-->
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>管理文件</title>
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<link rel="stylesheet" href="css/article.css">
</head>
<%
const MaxPerPage=20
dim totalPut
dim CurrentPage
dim TotalPages
dim i

if not isempty(request("page")) then
currentPage=cint(request("page"))
else
currentPage=1
end if

%>
<body bgcolor="#FFFFFF">
<p>&nbsp;</p>
<table width="700" border="1" cellspacing="0" cellpadding="0" align="center" bordercolorlight="#000000" bordercolordark="#FFFFFF">
<tr bgcolor="#99CCFF">
<td height="10" bgcolor="#B5D85E">
<div align="center"><b>管 理 界 面</b></div>
</td>
</tr>
<tr>
<td height="49"><%
dim sql
dim rs
sql="select * from learning order by articleid asc"
Set rs= Server.CreateObject("ADODB.Recordset")
rs.open sql,connstr,1,1
if rs.eof and rs.bof then
response.write "<p align='center'> 还 没 有 任 何 信 息</p>"
else
totalPut=rs.recordcount
totalPut=rs.recordcount
if currentpage<1 then
currentpage=1
end if
if (currentpage-1)*MaxPerPage>totalput then
if (totalPut mod MaxPerPage)=0 then
currentpage= totalPut \ MaxPerPage
else
currentpage= totalPut \ MaxPerPage + 1
end if

end if
if currentPage=1 then
showpages
showContent
showpages
else
if (currentPage-1)*MaxPerPage<totalPut then
rs.move (currentPage-1)*MaxPerPage
dim bookmark
bookmark=rs.bookmark
showpages
showContent
showpages
else
currentPage=1
showpages
showContent
showpages
end if
end if
rs.close
end if

set rs=nothing
connstr.close
set connstr=nothing

sub showContent
dim i
i=0
end sub
%>
<table border="1" cellspacing="0" width="90%" bgcolor="#F0F8FF" bordercolorlight="#000000"
bordercolordark="#FFFFFF" align="center">
<tr>
<td width="12%" align="center"><strong>ID 号</strong></td>
<td width="13%" align="center"><b>类 型</b></td>
<td width="47%" align="center"><strong>信 息 名 称</strong></td>
<td width="14%" align="center"><strong>修 改</strong></td>
<td width="14%" align="center"><strong>删 除</strong></td>
</tr>
<%do while not rs.eof%>
<tr>
<td width="12%" height="7">
<p align="center"><%=rs("articleid")%>
</td>
<td width="13%" height="7">
<div align="center"><%=rs("type")%></div>
</td>
<td width="47%" height="7"><a href="viewarticle.asp?id=<%=rs("articleid")%>"><%=rs("title")%></a></td>
<td width="14%" align="center" height="7"><a
href="edit.asp?id=<%=rs("articleid")%>">修 改</a></td>
<td width="14%" align="center" height="7"><a
href="delete.asp?id=<%=rs("articleid")%>">删 除</a></td>
</tr>
<% i=i+1
if i>=MaxPerPage then exit do
rs.movenext
loop
%>
</table>
<p><%
'end sub

sub showpages()
dim n
if (totalPut mod MaxPerPage)=0 then
n= totalPut \ MaxPerPage
else
n= totalPut \ MaxPerPage + 1
end if
if n=1 then
response.write "<p align='left'><a href=add.asp>添加信息</a>"
response.write "</p>"
exit sub
end if

dim k
response.write "<p align='left'>&gt;&gt; 信息分页 "
for k=1 to n
if k=currentPage then
response.write "[<b>"+Cstr(k)+"</b>] "
else
response.write "[<b>"+"<a href='manage.asp?page="+cstr(k)+"'>"+Cstr(k)+"</a></b>] "
end if
next
response.write " <a href=add.asp>创建信息</a>"
response.write "</p>"
end sub


%></p>
</td>
</tr>
</table>
<div align="center">
<center>
</center>
</div>

</body>
</html>

搜索更多相关主题的帖子: VBScript 代码 
2006-12-01 22:04
enirilt
Rank: 1
等 级:新手上路
帖 子:126
专家分:0
注 册:2006-11-29
收藏
得分:0 
试过了,还是不行,错误提示是:

错误类型:
ADODB.Recordset (0x800A0E78)
对象关闭时,不允许操作。
/feishui/INC/namege.asp, 第 101 行
2006-12-01 22:43
enirilt
Rank: 1
等 级:新手上路
帖 子:126
专家分:0
注 册:2006-11-29
收藏
得分:0 
呵呵,一连串的错误就来了
2006-12-01 23:00
enirilt
Rank: 1
等 级:新手上路
帖 子:126
专家分:0
注 册:2006-11-29
收藏
得分:0 
按照您的意思去做了,又到下一个错误了。看来这段代码错误百出,明天我头脑清醒了在仔细看一边,能不能找出错的点,在这感谢您的帮助,真的很谢谢!
2006-12-01 23:53
enirilt
Rank: 1
等 级:新手上路
帖 子:126
专家分:0
注 册:2006-11-29
收藏
得分:0 
比这个更有效,更简洁的方法么?智者点拨一下。
2006-12-02 10:26
快速回复:VBScript代码出错!
数据加载中...
 
   



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

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