'ASP 0185 : 80020003' Missing Default Property |
This error can happen when setting a barebones custom COM object to session or application scope (especially if you leave out the Set keyword). You shouldn't be storing any objects in session or application scope, unless they are explicitly marked as safe for doing so. See
Article #2053 for more information.
This can also happen when you try and work with an object when you should be working with one of its properties, e.g. the following:
<% Response.Write Response %> |
Generates this error:
Response object error 'ASP 0185 : 80020003' Missing Default Property /<file>.asp, line 0 A default property was not found for the object. |