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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DLL Error Message on ASP page

Status
Not open for further replies.

DrinkN1

Programmer
Apr 15, 2002
23
US
I have a DLL written in VB 6.0 that runs fine with VB programs. However, when I attempt to use it in ASP, I get the following error:

Microsoft VBScript runtime (0x800A01B6)
Object doesn't support this property or method

The error is appearing on this line:
clsAuth = server.createObject("ADSUtilities.Authenticate")

I've re-compiled the DLL, and re-verified that the VB6.0 programs still work with it. They do. However, I can not get my ASP page to call it.

And ideas?


 
Are you using the keyword "SET"

set clsAuth=server.createObject("ADSUtilities.Authenticate")

You do have your DLL running in IIS, and is accessible through the "Server"?


MrGreed

"did you just say Minkey?, yes that's what I said."
 
Grrrrrrrrrrr. Someone messed with security permissions on the server during a recent "upgrade" that I wasn't aware of.

Sorry for the post y'all,
Thanks!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top