I have a strange situation and I am unable to find a solution for this. I am working on a publically accessible Classic ASP site. I don't have access to the server or IIS but I have FTP access to it.
Now I want to reference a COM dll (not a .Net dll) to one of the asp pages. And then use it to create objects like:
Server.CreateObject(...)
I know about using RegSvr32 to register the dll or placing it into C:\Windows\system32, but I am unable to do so as I don't have access to the server.
I tried to place the dll with the asp file but it did not work.
Is there any other way to make it work?