Displaying Error Page based on the error exception?

Posted by Ramesh on Stack Overflow See other posts from Stack Overflow or by Ramesh
Published on 2010-03-29T07:56:28Z Indexed on 2010/03/29 8:23 UTC
Read the original article Hit count: 319

Filed under:

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...?.

© Stack Overflow or respective owner

Related posts about ASP.NET