Link to home
Start Free TrialLog in
Avatar of countrymeister
countrymeister

asked on

ActiveX can't create Object

I have an asp application that I am trying to debug. I keep getting the error
ActiveX can't create Object.

It does not tell me which object.
I have so far registered vbscript.dll.
jscript.dll, ScrRun.dll and msxml2.dll

The only other thing that I see is the following line
 Set oConn = Server.CreateObject("ADODB.Connection")

Is there some dll to register for this.
Avatar of pateljitu
pateljitu
Flag of Canada image

Can you please submit your code, it will be helpful to help debug.
Avatar of countrymeister
countrymeister

ASKER

For security reasons I caanot send you all the code, but here is a snippet

            set CN = Server.CreateObject("ADODB.Connection")
            CN.Open "DSN=DB01SQL;UID=webuser;Password=web1;DATABASE=webdetails;"
            CN.CommandTimeout =3000
            CN.CursorLocation = adUseClient
            set CMD = server.CreateObject("ADODB.Command")
ASKER CERTIFIED SOLUTION
Avatar of pateljitu
pateljitu
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
still no where with all the links provided