I am having an VB Script. I need to log the error information in a file. I need to log every information like error number error description and in which sub routine does the error occured.
Please provide some code
|
|
|||
|
|
|
For error handling in VBScript is used "On Error" clausule. There are 3 ways, how to handle errors:
Samples:
|
||
|
|
|
You can make use of the FileSystemObject and the Error object if you're using VBScript. Paste the following into error.vbs and run it. It will throw an error then log the details to a file called c:\errors.log
If you're using an ASP page then you can make use of ASPError to get more detailed information about the error such as line number, etc (remember to replace CreateObject with Server.CreateObject). Edit: To get the line number that caused the error in .vbs script you could add this as a parameter to the sub routine. |
|||
|
|
|
|
VBScript doesn't support on error goto label. The following piece of code will never work -: On Error GoTo HandleError '' on error will code jump to specified signal Dim aa = 15 / 0 GoTo Finish '' skips error handlingHandleError: Dim msgSet msg = Err.Description & vbCrLf & Err.Number MsgBox msgFinish:'' there is end of sciprt |
||
|
|