vote up 0 vote down star
1

What options are there in asp for error handling.

For example:

I'm using the Mail.SendMail function but when switching on the testing server it doesn't work, which is normal. I want to test if mailing is possible, if not then continu and/or show a message.

Any ideas?

flag

4 Answers

vote up 4 vote down check

There are two approaches, you can code in JScript or VBScript which do have the construct or you can fudge it in your code.

Using JScript you'd use the following type of construct:

<script language="jscript" runat="server">
try {
      tryStatements}
catch(exception){
      catchStatements}
finally {
      finallyStatements}
</script>

In your ASP code you fudge it by using on error resume next at the point you'd have a try and checking err.Number at the point of a catch like:

<%
Dim i
' Turn on error Handling
On Error Resume Next


'Code here that you want to catch errors from

' Error Handler
If Err.Number <> 0 Then
   ' Error Occurred / Trap it
   On Error Goto 0 ' But don't let other errors hide!
   ' Code to cope with the error here
End If
On Error Goto 0 ' Reset error handling.

%>
link|flag
+1. Javascript. If you need it, forget VBscript use javascript. – AnthonyWJones Jan 25 at 23:24
vote up 1 vote down

Been a while since I was in ASP land, but iirc there's a couple of ways:

try catch finally can be reasonably simulated in VBS (good article here) and there's an event called class_terminate you can watch and catch exceptions globally in. Then there's the possibility of changing your scripting language...

link|flag
Nice to know, but bejeebus thats ugly. I'd switch scripting language. – Binary Worrier Jan 23 at 11:36
Tell me about it :-) I've got to maintain some old projects and ASP lacks quite a lot of those standard features other scripting languages have nowadays... – Sander Versluys Jan 23 at 12:46
try catch finally definitely does NOT exist in VBScript. That article demonstrates a means to achieve the same goal but its hardly reason to describe VBS as actually having try catch finally. – AnthonyWJones Jan 25 at 23:22
hyperbole: one of my many flaws (edited) – annakata Jan 26 at 8:42
vote up 1 vote down

Some scenarios don't always allow developers to switch scripting language.

My preference is definately for Javascript (and I have used it in new projects), however maintaining older projects is still required and necessary. Unfortunately, these are written in VBScript.

So even though this solution doesn't offer true "try/catch" functionaility, the result is the same, and that's good enough for me to get the job done

link|flag
vote up 1 vote down

A rather nice way to handle this for missing COM classes:

Dim o:Set o = Nothing
On Error Resume Next
Set o = CreateObject("foo.bar")
On Error Goto 0
If o Is Nothing Then
  Response.Write "Oups, foo.bar isn't installed on this server!"
Else
  Response.Write "Foo bar found, yay."
End If
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.