We saw a problem in IE, where the interrupted request was still redirected to the controller action, however with arguments that were deprived, which led to a different error, it was reported in our logs and user activity records.
I solved this using a filter similar to the following
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using TWV.Infrastructure; using TWV.Models; namespace TWV.Controllers { public class TerminateOnAbortAttribute : FilterAttribute, IActionFilter { public void OnActionExecuting(ActionExecutingContext filterContext) {
source share