I want to know the debugging techniques available in ASP. A brief explanation on this would help me gain the knowledge.
Printable View
I want to know the debugging techniques available in ASP. A brief explanation on this would help me gain the knowledge.
blenda
There are various debugging techniques available and two of them out of the many available are given below
<%
On Error resume Next
%>
This line simply tells the ASP interpreter, to continue with the executing of the ASP script if there is an error, instead of throwing exception and stopping the script execution.
To trap & handle errors in an ASP application we need to use the Err object and 2 of the properties – Err.Number and Err.Description.