F
Fred Nelson
I'm devloping a Web Application in VB.NET. In my web.config file I have
specified that untrapped errors are to be sent to the page "errorpage.aspx".
This is working fine - if an untrapped error occurs the application is
indeed routed to this page.
On this page I would like to determine the cause of the error and either log
it in a file or send it to me via e-mail.
I am able to determine the page that sent me there from the URL parameter
"aspxerrorpath" - I would also like to be able to determine what went
wrong - or at least a line number where the failure occured.
I have the following code that I have seen in a vb.net web programming book:
dim appException as system.exception = server.getlasterror
This always returns a NULL value - no help at all!
Does anyone know how to determine the cause of an error when you have been
routed to the error page specified in the web.config file? I hope that its
possible to determine more than just the page that caused the error.
Your help would be greatly appreciated!
Fred
specified that untrapped errors are to be sent to the page "errorpage.aspx".
This is working fine - if an untrapped error occurs the application is
indeed routed to this page.
On this page I would like to determine the cause of the error and either log
it in a file or send it to me via e-mail.
I am able to determine the page that sent me there from the URL parameter
"aspxerrorpath" - I would also like to be able to determine what went
wrong - or at least a line number where the failure occured.
I have the following code that I have seen in a vb.net web programming book:
dim appException as system.exception = server.getlasterror
This always returns a NULL value - no help at all!
Does anyone know how to determine the cause of an error when you have been
routed to the error page specified in the web.config file? I hope that its
possible to determine more than just the page that caused the error.
Your help would be greatly appreciated!
Fred