Classic ASP : Capture Errors
Asked Answered
C

4

8

Is it possible to capture all 500 errors in Classic ASP at a global level? Maybe something in IIS. I'm using II6 at the moment. I like to capture the error message and then store it in the database. I know its possible in ASPX pages, but don't know exactly how you do in classic asp.

Thank you

Complemental answered 13/2, 2012 at 16:25 Comment(1)
IIS7 has Failed Request Tracing which reports unhandled classic ASP errors, not sure if it exists in 6.0. learn.iis.net/page.aspx/266/…Pterodactyl
V
17

Yes, create an asp page which will log the error details to the database, and set this to be the 500 handler page in IIS as below.

Use the Server.GetLastError object to get the details of the error in your handler script.

It might be a good idea to log to a text file rather than a DB in your 500 handler for resiliency.

Set Custom 500 Handler in IIS

Vi answered 13/2, 2012 at 16:33 Comment(8)
This is exactly what I was looking for. Thanks Jon. I will try it out right now.Complemental
When I response.write Server.GetLastError() I don't get anything. Any ideas?Complemental
Oh I was doing something dumb. I was not looking at the properties. ASPError.ASPCode() ASPError.ASPDescription() ASPError.Category() ASPError.Column() ASPError.Description() ASPError.File() ASPError.Line() ASPError.Number() ASPError.Source()Complemental
Great answer indeed as @Dan also said - going to award nice fat bounty soon. :-)Cordierite
I wish I could upvote this answer twice; such an elegantly sophisticated solution to a usually clunky and antiquated software development platform. It sure beats modifying tons of legacy code to include psuedo try to catch blocks...Preconception
For IIS7 you have to configure a new error redirection in "IIS->Error Pages" in your website settings. The url must be relative to root site not relative to your site (ex: "/YourSite/ErrorPages/500.asp") although you are configuring it in your website settings.Gormless
I tried this injunction with @Saille's solution. However I wasn't able to produce the same result. Either at ASP -> Error Page or IIS -> Error PageGlop
If that doesn't work, set a custom error page for 500.100 errors. This is the actual error ASP Classic returns. (Also, if your site runs multiple languages you can have a different error page for ASP vs. whatever else. Handy if you want ASP to log errors! For example, 500.100 handled by error.asp, 500 handled by error.php.)Pham
N
7

Complementing Jon's answer, use this script to write errors to a log file:

<%
'Set this page up in IIS to receive HTTP 500 errors
''Type' needs to be 'URL' and the URL is e.g.: '/500Error.asp' if this file is named '500Error.asp' and is in the site root directory.
'This script assumes there is a "/Log" folder, and that IIS has write access to it.
Const ForReading = 1, ForWriting = 2, ForAppending = 8
Const TristateUseDefault = -2, TristateTrue = -1, TristateFalse = 0

Dim objFSO, err
Set objFSO=CreateObject("Scripting.FileSystemObject")

Set err = Server.GetLastError()

outFile=Server.MapPath("/Log/ErrorLog.txt")
Set objFile = objFSO.OpenTextFile(outFile, ForAppending, True, TristateTrue)

objFile.WriteLine Now & " - ERROR - ASPCode:" & err.ASPCode & " ASPDescription: " & err.ASPDescription & " Category: " & err.Category & " Description: " & err.Description & " File: " & err.File & " Line: " & err.Line & " Source: " & err.Source  & vbCrLf
objFile.Close

Set objFile = Nothing
Set err = Nothing

%>
Nowadays answered 7/10, 2013 at 2:44 Comment(0)
W
5

Error handling in classic ASP is a complete pain. You can catch the error where you think it's going to occur using on error resume next, then check for the error code in the following line of code.

Alternately you can scan the server logs for 500 errors. or set up a "500 error" page in your IIS settings.

On Error Resume Next
... do something...
If Err.Number <> 0 Then
... handle error
end if
Woods answered 13/2, 2012 at 16:35 Comment(0)
P
-1

To add to @Jon Eastwood's answer - if you are using IIS 7.5, then instead of "Custom errors" you will look for ".NET Error Pages" per the image below:

enter image description here

This applies to Windows Server 2008 and other newer Windows SKUs.

Preconception answered 29/7, 2015 at 5:35 Comment(1)
ASP Classic <> ASP.NETPham

© 2022 - 2024 — McMap. All rights reserved.