I have been looking around but i don't see any spec for this, maybe i search a wrong keyword. But i'm here so i should ask something.. :)

I'm familiar with Authorize Attribute, but I think it only apply to Actions. What should i do if i want my whole application to authorize first before getting access to any actions?

It will be very pain to just repeat in every action to put [Authorize] tag on top of them.

Thank you very much

link|improve this question

feedback

2 Answers

It is not quite correct that AuthorizeAttribute applies only to actions. It can also be applied to classes containing actions. If you have a base controller type for your application (which can be abstract, if you like), and every other controller is a subtype of that base type, then your entire application now requires authorization, with just a few characters of typing.

You should find a way to make AuthorizeAttribute work for you; this is the standard way of doing authentication in ASP.NET MVC.

link|improve this answer
feedback

No, you can mark your controller with AuthorizeAttribute like an action. Check out here.

link|improve this answer
how about the whole application to be authorize. I have like 20 controller here. – DucDigital Dec 29 '09 at 8:37
IMO, you should use authorization section in the web.config. – Mehdi Golchin Dec 29 '09 at 9:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.