I am unable to redirect or Response.Write my application when either the application_end or application_error events occur.\[code\]protected void Application_Error(object sender, EventArgs e){ string strError; strError = Server.GetLastError().ToString(); this.Context.ClearError(); Response.Write("Application_Error" + "<br/>"); Response.Write("Error Msg: " + strError + "<br/>");}\[/code\]Any help would be much appreciated, thanks