
Passing error from Com component to ASP
Make sure your object uses "Err.Raise". In your application, use "On Error
Resume Next" and then, immediately after calling the suspicious routine,
check the error status of your object.
Quote:
> Hallo,
> I am devoping COM components which are run under MTS environment and are
> called by Active Server Pages.
> My question is if an error occurs in these components, then how should I
> deal with it and pass this to ASP pages,since using message boxes is
> useless on Server side.
> Ahmed