REGSVR32 ... Invalid ProgID
I have a simple activex dll that is being used by a simple asp. I'm just trying to learn this stuff. When I run it in vb, it is working fine. I call it like this:
Set objReference = _
Server.CreateObject "ExampleProject.ExampleClass")
This works fine.
The problem is that when I save it as a dll (ExampleProject.dll), it doesn't work. I call it like this:
Set objReference = Server.CreateObject("ExampleProject.dll")
This is the error I get:
Error Type:
Server object, ASP 0177 (0x800401F3)
Invalid ProgID. For additional information specific to this message please visit the Microsoft Online Support site located at: http://www.microsoft.com/contentredirect.asp.
/010730/ExampleProcess.asp, line 10
From what I understand, this is the error that is given when the dll isn't registered. But, I did register it like this:
REGSVR32 C:\Inetpub\wwwroot\010730\ExampleProject.dll
When I run that, It says that the registering of the dll succeeded.
Why the heck am I still getting the invalid progid error?????
please help.
thanks,
Paul