| by Achyut Kendre | No comments

Authorize and AllowAnanymous Attributes in ASP.NET MVC 5

Example Code: https://drive.google.com/file/d/1vU4wNkp35Co8amL-_ZY6Z7HbVs2uj1yK/view?usp=sharing [Authorize] Attribute Authorize Attribute is built in attribute when applied on action or controller you can access that controller or action only after login. [AllowAnanymous] Attribute When you apply AllowAnanymous Attribute on any action and controller the action can be called without login even though controller is Authorized it can not be […]

Read More