学ASP有十多天了,出现如下提示:
技术信息(用于支持人员)
错误类型:
Microsoft JET Database Engine (0x80004005)
找不到可安装的 ISAM。
/qubu/index.asp, 第 5 行
浏览器类型:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Maxthon; SV1)
网页:
GET /qubu/index.asp
时间:
2006年9月19日, 13:47:32
到现在还摸不着头脑,两三天都找不出原因来,请指点下,谢谢!代码如下:
<%
dim connstry
connstry="Provider=Microsoft.Jet.OLEDB.4.0;date source=" & server.mappath("tushu.mdb")
set bb=server.createobject("ADODB.Connection")
bb.open connstry
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>读取多条信息</title>
</head>
<%
set rs=server.createobject ("adodb.recordset")
rs.open "select * from tushumulu ",bb,1,1
%>
<body>
<%if rs.EOF and rs.BOF then
response.write ("晢时还没有新文章")
else
Do until rs.EOF
response.write("编号:"& rs("bh"))
response.write("<br>名称:"& rs("mc"))
response.write("<br>价格:"& rs("jg"))
response.write("<br>作者:"& rs("zz"))
response.write("<hr>")
rs.movenext
loop
end if%>
<%rs.close
set bb=nothing%>
</body>
</html>
如果出现这种问题有什么好的解决方法没有?