| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 581 人关注过本帖
标题:请教:缺少对象: '' 的错误
取消只看楼主 加入收藏
huangweia0
Rank: 1
等 级:新手上路
帖 子:50
专家分:0
注 册:2005-3-8
结帖率:33.33%
收藏
 问题点数:0 回复次数:1 
请教:缺少对象: '' 的错误

'+++++++++++++++++++++++++
Microsoft VBScript 编译器错误 错误 '800a03f6'
缺少 'End'

/iisHelp/common/500-100.asp,行242

Microsoft VBScript 运行时错误 错误 '800a01a8'

缺少对象: ''

/news/news.asp,行23
++++++++++++++++++++++++++
'以上为错误提示


'网页代码如下
<%@language = VBScript%>
<!--#include file=include/conn.asp-->
<html>
<head>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
--></style>
</head>
<body background="file:///C:\Inetpub\wwwroot\news\images\bg01.gif">
<table width="750" align="center">
<tr>
<td width="750" align="center">
<!--#include file="include/head.htm"--></td>
</tr>
</table>
<table width="750" align="center" ID="Table1">
<%do while not RecordsettNewsSubject.eof%>
<tr>
<td align="center" width="750"><%=(RecordsettNewsSubject.Fields.Item("fSubjectName").Value)%>
</td>
<%move.next%>
<% loop %>
</td>
</tr>
</table>


'include的数据库文件如下
'==============================
Function CreateMdbRecordset(tNewsSubject)

Dim conn,Provider,DBPath
'建立Connection 对象
Set conn = Server.CreateObject("ADODB.Connection")
'Provider = "Provider=Microsoft.Jet.OLEDB.4.0;"
'DBPath = "Data Source=" &Server.MapPath( "data/news_data.mdb" )
'打开数据库
conn.Open Provider &DBPath
Set CreateMdbRecordset = Server.CreateObject("ADODB.Recordset")
'打开数据表,参数二为Connection对象
CreateMdbRecordset.Open "tNewsSubject", conn, 2,2
End Function
'==============================

请教,错在哪里,怎么改?
第23行是
<%do while not RecordsettNewsSubject.eof%>

搜索更多相关主题的帖子: Microsoft 对象 VBScript language 
2006-08-05 11:15
huangweia0
Rank: 1
等 级:新手上路
帖 子:50
专家分:0
注 册:2005-3-8
收藏
得分:0 
谢谢各位指教!!

2006-08-07 12:04
快速回复:请教:缺少对象: '' 的错误
数据加载中...
 
   



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

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