"abcd" <> wrote in message
news:...
>I have a VB compoonent I am using
>
> err.raise err.number, err.source, err.description
>
> my ASP page doesnt show me the error raised....its shows err.number = 0
>
> any clues
That would mean that the Err object has been cleared before the values were
read from it. Save the Err.Number, etc. values to variables before raising
an error.
(Of course you're aware that merely omitting an error handler would
accomplish the same thing, right?)
-Mark
|