Disable Error On ASO Codes
Unexpected errors can stop programs and your application coul be down immadiately. But 'On Error Resume Next' funtcion help you to avoid to stop unexpected errors on code. All you need to put this code after a code block.
Let's see it in an example :
<%
for z = 0 to 10
with response
.write (z & "
")
end with
next
%>
This is a simple ASP code but contains some errors. If you try to start application, you will get an error page. But adding 'On Error Resume Next' function into our code, page will be displayed without an error message.
<%
for z = 0 to 10
with response
.write (z & "
")
On Error Resume Next
end with
next
%>
Try your ASP codes without error, but this is fact of programming !
Happy Coding
Our free applications:
Custom Search
- ASP Chat Box
- ASPNET Web Counter Free Open Source Code
- Beginning-Ajax-and-ASPNET-35
- Working with Array Remove An Item
- How to upload images to mySQL within PHP
- Video Interview With Roman Strobl
- Custom Paging in ASP Fast And Easy
- Delete Files Online in ASP
- Displaying Records From An Excel Database
- Paging Results in PHP
- How to write and use a JavaBean My frst java bean
- Installing Sun Java System Application Server 9.1 in Solaris Zones
- Java SE 6 Performance White Paper
- Converting sceonds to hours minutes and seconds
- What is Ecommerce and the Importance of Ecommerce
- Easy Download Manager Free Version
- ASP Chat Box
- Writing Form Data to Text Files
- Paging Records in JSP
- What is Ecommerce and the Importance of Ecommerce
- Beginning-Ajax-and-ASPNET-35
- How to upload images to mySQL within PHP
- Simple XML RSS Parser
- Counting records in PHP mySQL
- ActiveNews Manager Freeware News Exchange Software
- How to write and use a JavaBean My frst java bean
- Paging Results in PHP
- Free User Registration Form
- A-timesaver-control-GridView
- ASPNET Web Counter Free Open Source Code
- Easy Download Manager Free Version
- ASP Chat Box
- Writing Form Data to Text Files
- Paging Records in JSP
- Beginning-Ajax-and-ASPNET-35
- How to upload images to mySQL within PHP
- Simple XML RSS Parser
- ActiveNews Manager Freeware News Exchange Software
- Counting records in PHP mySQL
- How to write and use a JavaBean My frst java bean
- Paging Results in PHP
- Free User Registration Form
- A-timesaver-control-GridView
- ASPNET Web Counter Free Open Source Code
- Comparing Dates