The Windows 2000 server I am using just had the .NET framework 2.0 installed on it. The website is still using the the .NET framework 1.1.
My asp pages are being displayed properly, unless there is a database connection involved, then the page doesn't load.
The only message I get is "Page cannot be displayed". If I take out my database connection code, the page loads.
Here is the code I am using to connect to my database:
Has anyone ran into this before?
Thanks
My asp pages are being displayed properly, unless there is a database connection involved, then the page doesn't load.
The only message I get is "Page cannot be displayed". If I take out my database connection code, the page loads.
Here is the code I am using to connect to my database:
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 this before?
Thanks