Sometimes I get exception in my production environment:
- Process information
- Process ID: 3832
- Pr
Just to add to the responses above. I had this same issue when i first started using ASP.Net MVC and i was doing a Response.Redirect during a controller action:
Response.Redirect("/blah", true);
Instead of returning a Response.Redirect action i should have been returning a RedirectAction:
return Redirect("/blah");