I redirect Errors to Error.aspx

 <system.web>
        <customErrors defaultRedirect="error.aspx" mode="On">
        <error redirect="error.aspx" statusCode="500" />
 </system.web>

and the problem is that there is also second error in ErrorMasterPage of Error.aspx

<script Language="C#" MasterPageFile="~/ErrorMaster.Master" runat="Server">

and CustomError can not handle the second error while its like a loop ( it will redirect to error.aspx and Masterpage of Error.aspx has Error.

here is problem:

Example:

Login.aspx(has Error) -> Error.aspx -> ErrorMasterPage.Master (has Error) -> Show Yellow Page Thanks

link|improve this question

57% accept rate
You should fix the error in your error page. What else would you do in that situation? – Frédéric Hamidi Dec 22 '10 at 13:58
I do not see any question or anything wrong in your post ... – Madhur Ahuja Dec 22 '10 at 14:08
@Frédéric : the error is in Masterpageof Error and is not in Error.aspx – Reza Dec 22 '10 at 14:08
@Madhur , I added an Example to Post – Reza Dec 22 '10 at 14:10
@Reza - The error page should be as free of possible errors as you can make it. It should not necessarily rely on a master page, and if it does, that master page should be certified error free before it is viable. – Joel Etherton Dec 22 '10 at 14:13
show 2 more comments
feedback

1 Answer

up vote 1 down vote accepted

If you're doing automatic redirection using web.config I'd say you should have an error page so simple that almost no server error is possible. If you're accessing the database on that page, you would enter on a loop if the error is related with that.

Another option would be redirecting to the error page using the error handler on global.asax. This would involve C# logic. There, you could detect if the error was generated on error.aspx and on that case, you could redirect to fatalerror.aspx (a white page just showing a message for instance).

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.