The webserver is Win 2003 running IIS 6.
I am working on an asp page to create user accounts in active directory. The accounts are getting created just fine but my CDO objects aren't working when I try to create the mailboxes.
Specifically, the line:
Set objMailbox = CreateObject(CDOEXM.IMailboxStore)
generates the error:
Microsoft VBScript runtime error '800a01f4'
Variable is undefined: 'CDOEXM'
which I know means it isn't finding the cdoexm.dll file. I have put the dll in the same folder as the .asp file but that doesn't seem to help.
Any thoughts on how I can get it to include the dll?
I am working on an asp page to create user accounts in active directory. The accounts are getting created just fine but my CDO objects aren't working when I try to create the mailboxes.
Specifically, the line:
Set objMailbox = CreateObject(CDOEXM.IMailboxStore)
generates the error:
Microsoft VBScript runtime error '800a01f4'
Variable is undefined: 'CDOEXM'
which I know means it isn't finding the cdoexm.dll file. I have put the dll in the same folder as the .asp file but that doesn't seem to help.
Any thoughts on how I can get it to include the dll?