Remark
any action which we don’t want to be get authenticated for example home, login, about us etc these are some actions which are accessed without authentication
1 2 3 4 5 6 7 |
[AllowAnonymous] public ActionResult Home() { return View(); } |