大家看看这是什么错误。
<%@import namespace="system.data"%>
<%@import namespace="system.data.ado"%>
<html>
<head>
<script language="vb" runat="server">
sub page_load(sender as object,e as eventargs)
dim myconnection as ADOConnection
dim mydataset as new dataset
dim ssql as string
dim myconnstr as string="provider=microsoft.jet.oledb.4.0;data source="&server.mappath("customers.mdb")
myconnection=new adoconnection(myconnstr)
ssql="select * from customers"
dim mydscommand as adodatasetcommand=new adodatasetcommand(ssql,myconnection)
mydscommand.filldataset(mydataset,"customers")
mytable=mydataset.tables("customers")
end sub
</script>
</head>
错误信息: BC30002: Type 'adodatasetcommand' is not defined.
我装了
Microsoft Data Access Components 2.7,下在的论坛也正常运行