boutique replica bags up ideas

the best replique rolex and prices here.

julia highlight 99j hair color 10a quality straight human hair lace front wigs 8 - 24 inches pre plucked hairline 13x4 inches lace front brazilian wig onlinefor sale

ASP.NET MVC – Make Action Method as Anonymous Methods in Secure Controller

Updated on     Kisan Patel

To make an action method as a anonymous methods in secure controller, we can make that method as Anonymous method by putting [AllowAnonymus] before the method.

[Authorize]
public class HomeController : Controller
{
    [AllowAnonymous]
    public ActionResult Index()
    {
        return View();
    } 
}

ASP.NET MVC

Leave a Reply