Displaying Error Page based on the error exception?
- by Ramesh
I am using the exception catching procedure which is the module to track the errors and it write the error description in a log file in the server.I want to display the error details in a common Error page which is having a multi-line textbox from the common function in the module.Is it possible to do that.If possible,How can I do that....
Try
;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;
Catch ex as exception
CreateLogFile(Ex)
End Try
The above description is the error catching portion from the code
In the module I have written the CreateLogFile function which write the log file.
I want to display the Error Page after writing the log file which should contain the error details....
Please Help...?.