I have the following method in global.asax that is not firing when I throw the hard coded error:
Throw new Exception("SomeError");
public void Application_Error(object sender, EventArgs e)
{
Response.Redirect("Error.aspx");
}
Any advice?
Go to the complete details ...