Hi all.
I was wondering. I have my way of doing error detection (after a connection etc see if Err.number > 0.).
But how do you guys do it? Is there maybe an easy way?
Thanks!
Printable View
Hi all.
I was wondering. I have my way of doing error detection (after a connection etc see if Err.number > 0.).
But how do you guys do it? Is there maybe an easy way?
Thanks!
That's pretty much what I do. In VBScript there really isn't any way to specify an error handler that is for the entire page. You could call a function that handles your errors, but in order to detect it, you have to check yourself because VBScript only supports On Error Resume Next.
Thanks