Hi,
What kind of binding is possible in ASP Applications? Is it true that the only possible binding in ASP is late binding? Since everything is treated as a variant.
Thanks & Regards,
Abhijit
Printable View
Hi,
What kind of binding is possible in ASP Applications? Is it true that the only possible binding in ASP is late binding? Since everything is treated as a variant.
Thanks & Regards,
Abhijit
that's true.
ASP has its Script Engine that interpreter your code.
this script engine is simply another COM object, that can be host by any application that support Automation.
because of it's nature, this script engine can work only through IDispatch interface.
IDispatch enable clients (such as ASP) that doesn't support pointers to communicate with COM objects.