April 29, 2006
ASP Error Handling - On Error Resume Next
In ASP you handle application errors by using the On Error resume Next statement. If you don t want your visitors to see ugly meaningless error messages, then you ll have to implement some kind of error handling in your ASP applications. How does ASP Error Handling work? The first think you need to do is to put the following line on the top of your ASP page: <% On Error resume Next %> This line simply tells the ASP interpreter, to continue with the executing of the ASP script if there…
