keep gettin this error msg - its sposed to list
items from an access database.
Im using windows 98
ms PWS
and have mdac 2.7 installed
im not sure what else i can do to fix it
thanks for any help
ADODB.Connection error '800a0e7a'
Provider cannot be found. It may not be properly installed.
/db.asp, line 34
Dim dbc
Dim strConn
Dim strpath
'this procedure is called wherever a connection is needed. Returns 'dbc' as active connection
sub openConn()
'use appropriate connection string
strConn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & server.MapPath("admin/scart.mdb")
Set dbc = Server.CreateObject("ADODB.Connection")
dbc.open strConn (**line 34**)
end sub
sub closeConn()
if isobject(dbc) then
if dbc.State = adStateOpen then
dbc.Close
end if
set dbc = nothing
end if
end sub
%>