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:
Has anyone ran into something like this before?
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