I'm working on a legacy application developed in classic ASP. One of pages has code written which goes like this -
Set secCon = Server.CreateObject("foo.methodname")
secCon.prop1 = Method1
I can't find any definition of foo.methodname anywhere in the code which is very frustrating. I guess my question is whether there is a way to create an instance of an object which doesn't have any definition in the code you're working on.