| |
adminkoe
Posts: 117
Score: 0
Joined: 12/23/2000
From:
Status: offline
|
You could also try to trap the error(s) that occur. This is one way to do it: First, if this line exist: On Error Resume Next then comment it out. Next, add the line: On Error Goto ErrorHandler (This should be added early in the code, preferably right after: <%@ LANGUAGE = VBScript %> (which should be the first line).) Then make an ErrorHandler method, e.g. like this: Sub Errorhandler() Response.Clear Response.Write("Error: " & Err.Source & "<br>") Response.Write("Error number: " & Err.Source & "<br>") Response.Write("Error description: " & Err.Description & "<br>") Response.End End Sub
|
|