Главная страница | назад





Article #26063: Why is the COM object I made for my ASP page not working?

Question

Why can I create my COM object everywhere except in the ASP page I made it for?

Answer

ASP objects need to derive from IDispatch so they can access the properties of the web request object. Normal COM objects are derived from IUnknown.
To make one, use File|New|ActiveX|ASP Object.

Last Modified: 18-OCT-00