mrScriptBASIC template


/ Published in: Other
Save to your folder(s)



Copy this code and paste it in your HTML
  1. on error goto handler:
  2.  
  3. ' TODO: main script code
  4.  
  5. handler:
  6. if err.Number <> 0 then
  7. debug.log(makestring(err.Description," at line ",err.LineNumber),4)
  8. err.Clear()
  9. end if

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.