Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Loaded .NET Framework 2.0 messed up my ASP database connections

Status
Not open for further replies.

ksbigfoot

Programmer
Joined
Apr 15, 2002
Messages
856
Location
CA
I loaded the .NET Framework 2.0
I changed the website to use this framework and I was getting Event ID: 1089 & 1000.
So I changed back to 1.1.4322, but now any database connection I have in my ASP page is not working.

Here is the code I use to connect to a database in my ASP pages:
Code:
set conn = Server.Createobject("ADODB.Connection")
with conn
    .Provider = "Microsoft.Jet.OLEDB.4.0"
    .ConnectionString = "C:\Databases\MyCompany\db2000.mdb"
    .Open
end with
Has anyone ran into something like this before?
 
In case anyone else runs into this problem.
I downloaded the lastest MDAC and also I updated to the latest Microsoft Jet OLEDB.
Fixed my connection problem after I did that.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top