Tagged Questions
The action-filters tag has no wiki summary.
5
votes
4answers
1k views
Enforce Action Filter on all Controller Actions (C# / ASP.NET MVC)
I made a new action filter (attribute, similar to [Authorize]) which authorizes access to a controller action based on a session value. However, I'm basically decorating all my controller actions with ...
0
votes
1answer
49 views
asp.net mvc global vs class filters
My MVC 3 app has authorize filters at the class level. As I understand it, when I try for example /Home/Index and I have not logged in it should re-route me to the page I have specified - my log-in ...
0
votes
1answer
337 views
How to write test case for mvc action filters?
I have an action filter which i got from the below link
http://blog.wekeroad.com/blog/aspnet-mvc-securing-your-controller-actions/
there is something called "RequiresAuthenticationAttribute"
for this ...