ASP.NET MVC: Authentication and Authorization
By Tan Lee Published on May 29, 2017 5.43K
How to Implement Authentication and Authorization, check if user is authorized inside action with ASP.NET Identity MVC 5 using C#, Entity Framework Code First
Step 1: To check user authentication and authorization you can change the HomeController as below
public class HomeController : Controller { public ActionResult Index() { return View(); } [Authorize(Roles = "Admin")]//user 1 public ActionResult About() { ViewBag.Message = "Your application description page."; return View(); } [Authorize(Roles = "Sales")]//user 2 public ActionResult Contact() { ViewBag.Message = "Your contact page."; return View(); } }
VIDEO TUTORIALS
- ASP.NET MVC Responsive Templates Free Download
- How to upload file in ASP.NET MVC
- How to Create Contact Form Flat Responsive in ASP.NET MVC
- How to check if HttpPostedFileBase is an image
- How to upload Multiple File in ASP.NET MVC
- ASP.NET MVC: Implement Password Reset with ASP NET Identity
- ASP.NET MVC: Getting Started
- ASP.NET MVC: Create Custom Routes
Categories
Popular Posts
HTML Bootstrap 4 Login, Register & Reset Template
Nov 11, 2024
Material Lite Admin Template
Nov 14, 2024
Horizon MUI Admin Dashboard Template
Nov 18, 2024
Implementing Caching in ASP.NET Core
Dec 14, 2024