I have a method decorated with two custom ActionFilterAttribute.
[RequiresAuthentication(Order = 1)] [ToonAction(Order = 2)] public ActionResult Browse(...
Add
filterContext.HttpContext.Response.Clear();
at first and this at End :
filterContext.HttpContext.Response.End();
Hope this helps.