We currently has a page that is used to display a generic error message when errors occur on our website. It has no functionality at all other than displaying a label that m
you could catch/handle all errors in your global.asax file instead and do the redirect there
protected void Application_Error(object sender, EventArgs e) { //Exception ex = Server.GetLastError(); Server.Transfer("~/DefaultErrorPage.aspx"); }