Joshua Enfield
Joshua Enfield

Reputation: 18288

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?

Upvotes: 0

Views: 1506

Answers (1)

Adam Tuliper
Adam Tuliper

Reputation: 30152

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/

Upvotes: 1

Related Questions