Well, there is something you can do about errors. It might be cheesy, but it seems to work for me.
Heres the synonyms (IMHO)
try{bla}catch(exception e){blah}
is roughly the same as
On Error Resume Next 'like try i guess
'heres the cheesy catch
If Err.Number <> 0 Then
strOutcome = "Error Number: " & Err.Number & ", " & Err.Description & ", Line: " & Err.Line
Response.Write strOutcome
Err.Clear
End If
It seems to work for me. I'm thinking VBScript is better (and this is a hard thing for me since my first love is JAVA) because there is so much out there in the way of help. In all the years I've been doing ASP, I might have seen one or two ASP implementation exaples in JScript or JavaScript.
sjuarez1979