During a json request, the asp.net error redirect sends them to an incorrect path - it keeps looking for an Error.cshtml view under Home (the Home folder for views, as if it is trying to use my home controleler), when they are all under an Error folder/controller set up, which is clearly outlined in my config file:
<customErrors mode="On" defaultRedirect="~/Error/Error">
<error statusCode="404" redirect="~/Error/NotFound" />
<error statusCode="403" redirect="~/Error/Forbidden" />
</customErrors>
Now, for a regular web page request, if there is an exception, it does redirect to the error controller, it's just when sending a request from jquery .ajax, it tries to look under the Home folder instead of Error. Not sure how I can correct this. Thanks!