Since asp.net mvc has changed a lot since November, does anyone have a solution to this question:
http://stackoverflow.com/questions/274039/resolve-filterattributes-on-controller-and-action
Phil said an ActionFilter on a controller is just shorthand for applying the attribute to all action methods of the controller, and it is true, if I put the same ActionFilter attribute on the controller and on an action method, it will run twice. But this doesn't seem like natural behavior since the compiler won't even let you put the same attribute directly on a method multiple times.