-
Contributing Member
Query in ASP
I want to know the debugging techniques available in ASP. A brief explanation on this would help me gain the knowledge.
-
Contributing Member
Re: Query in ASP
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules