If an exception was thrown in a page, would it be possible to be handled within the masterpage (assuming it wasn't handled before?)

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

If a method on the master page is one in the call chain above where the exception occurs, it can be caught in it.

What are you trying to accomplish? At a guess I would say that you need to explore the creation of a base page where you have your exception handling and inherit your other pages from it.

link|improve this answer
Well I was hoping I could catch all exceptions that were unhandled on a page and show a message on the masterpage to the user – m.edmondson Jan 12 '11 at 16:46
@m.edmondson - do you mean you want to display the errors on the master page? – Oded Jan 12 '11 at 16:50
No not the actual errors - just a generic message whilst e-mailing me the stacktrace etc – m.edmondson Jan 12 '11 at 16:52
@m.edmondson - Here is a good article that goes into master pages in depth. I feel you have some misconceptions about how they work. odetocode.com/code/450.aspx – Oded Jan 12 '11 at 17:02
feedback

You could add handler to Page.Error event:

protected void Master_Init() 
{
    Page.Error += MyErrorHandler;
}

I am not sure, that there is Master_Init method in MasterPage class, but I believe, you got an idea.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.