home *** CD-ROM | disk | FTP | other *** search
/ PC Open e89 / pcopen_e89.iso / corsi / webdeveloper / lezione_2 / erroreresume.asp < prev    next >
Encoding:
Text File  |  2003-10-25  |  309 b   |  27 lines

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2.  
  3. <html>
  4. <head>
  5.     <title>Pagina con errore</title>
  6. </head>
  7.  
  8. <body>
  9.  
  10. <% 
  11.  
  12. Dim i
  13. Dim j
  14.  
  15. i = 1000
  16.  
  17. on error resume next
  18.  
  19. for j = -10 to 10
  20.     response.write i/j
  21. next
  22.  
  23. %>
  24.  
  25. </body>
  26. </html>
  27.