Ok, I'm realy getting the hang of this COM stuff, my question:
How can I reference this object (dll) in???
In vb, ok project menu > references,
In a web page or Html or asp file though, how is this done ?
Thank you!
Printable View
Ok, I'm realy getting the hang of this COM stuff, my question:
How can I reference this object (dll) in???
In vb, ok project menu > references,
In a web page or Html or asp file though, how is this done ?
Thank you!
Server.CreateObject("ProjectName.ClassName")
There is no early binding in VBScript for external objects, everything is late bound, so you can only reference objects this way