@Blog.Author(Nandip Makwana) .LearningExperience(ASP.NET, ASP.NET MVC, IIS, jQuery & Technology Surrounding it...)

December 11, 2012 comment

ASP.NET MVC: AllowAnonymous action filter

ASP.NET MVC: AllowAnonymous

AllowAnonymous attribute is used to skip authorization enforced by Authorize attribute. Action method marked with AllowAnonymous will be always accessible by all users including anonymous users.

Attribute Usage: Controller & method

Sample Code:

[AllowAnonymous]
public ActionResult Login()
{
    return View();
}

Check out ASP.NET MVC: Action filter series post to read about other available action filters.

You can follow me on twitter for latest link and update on ASP.NET & MVC.

comments powered by Disqus

Featured Content

Resources & Tools

About Nandip Makwana

Nandip Makwana is passionate about digital world and web. He completed his Masters in Computer Application in June 2011. Currently he is working as a Software Engineer. He has shown great promise and command over ASP.NET and technologies surrounding it during his academic years and professorial life...continue reading