I am currently developing a project that will use Windows authentication to authorize users and set their specific permissions. However, every time I run the program to test, t
Is there extra controls in the controller that would specify a user has to be logged in before accessing any pages?
Example
[Authorize(Roles = "admin")] // this can even be declared at the top of the controller and the controllers will force all to login.
public ActionResult TheController()
{
//TODO
}