I added a custom Error page to my project. The problem is that each time I do a redirect to another page the code in the page_load of the error.aspx is executed.
In my project I make use of UpdatePanels and one masterpage. All my pages use the masterpage incl the error page. I even tried to use a error page which doesn't use my masterpage. And i still got the same problem.
In my web.config I have the following code:
<customErrors mode="On" redirectMode="ResponseRewrite" defaultRedirect="~/Applicatie/Algemeen/Error.aspx" />
This is how I linked my error page(.aspx) with the masterpage:
<%@ Page Title="" Language="C#" MasterPageFile="~/Master/Site.Master" AutoEventWireup="true" CodeBehind="Error.aspx.cs" Inherits="WebApp.Applicatie.Algemeen.Error" %>
Is there any good reason on why this code is always executed.
I Tried to use the Application_Error in Global.asax. It looks like the code in there is also triggered every time a navigate to a new page. I realy don't know what causes this error when i try to debug en want to look who is the sender it returns Global.asax and when i dig even deeper i get this: Image! (can't post images yet)