Questions tagged [asp.net-authentication]

Questions regarding ASP.NET identity authentication methods

ASP.NET, in conjunction with Microsoft Internet Information Services (IIS), can authenticate user credentials such as names and passwords using any of the following authentication methods:

  • Windows: Basic, digest, or Integrated Windows Authentication (NTLM or Kerberos).

  • Forms authentication, in which you create a login page and manage authentication in your application.

  • Client Certificate authentication

ASP.NET controls access to site information by comparing authenticated credentials, or representations of them, to NTFS file system permissions or to an XML file that lists authorized users, authorized roles (groups), or authorized HTTP verbs.

ASP.NET Web Application Security

185 questions
0
votes
1 answer

Custom Windows Active Directory Authentication in ASP.net C# page

I sort of want to be able to do mixed windows and forms authentication. //I want to check the browser the user is using If(IE || chome)//I know IE and chrome can authenticate without a popup login box { //check windows authentication …
0
votes
2 answers

Set a group of actions to require the same authorization

Is there a way to set a group of actions inside of a controller to require the user to be in a certain role? So for example if I have 5 Actions that I want to require the user to be in a "Recruiting" role can I group the code and then have all those…
Jared
  • 5,840
  • 5
  • 49
  • 83
0
votes
1 answer

How to add asp.net authorization cookie to header request?

Can somebody tell me how to add asp.net cookie authorization to a request header (via MVC3)? Cookie: Cookie:…
genxgeek
  • 13,109
  • 38
  • 135
  • 217
0
votes
2 answers

ASP MVC 3 Basic Register / Login / Logout on a different table

I have seen the default 'Account' Model and Controller which comes default with a standard MVC3 Application, how ever, as I have generated my Database first. I already have designed my own 'Users' table, which I'd like a simple Registration / Log…
-1
votes
3 answers

What model to use in my asp mvc view

I am trying to generate a list of all the users in the system. I am using the default built in authentication. here is my Identity models class: public class ApplicationUser : IdentityUser { [Required] [MaxLength(50)] public string email…
Zapnologica
  • 22,170
  • 44
  • 158
  • 253
1 2 3
12
13