ASP.NET MVC - Controller level attributes (filters) - Have them execute after action level attributes?
Is there a way to have controller开发者_开发知识库 level filters execute after the action level filters?
You could try specifying the scope as global and changing the Order parameter. Are these filters you have control over?
Check out: http://rajsoftware.wordpress.com/2011/05/14/mvc3-filter-ordering/
精彩评论