top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How to implement Windows authentication for MVC?

0 votes
401 views
How to implement Windows authentication for MVC?
posted Mar 29, 2017 by Jdk

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

To configure your Web application for Windows authentication, follow these steps:
1. Create an ASP.NET Web Application named ASPNETWinAuth. By default, theWebForm1.aspx file appears.
2. In the HTML view of WebForm1.aspx, replace the existing code with the following sample code:
<%=User.Identity.Name%>
3. Click Start, point to Programs, point to Administrative tools, and then click Internet Information Services.
4. The Internet Information Services MMC appears. Expand Computer, and then expand a Web site that uses Windows authentication.
5. Click the ASPNETWinAuth Web site application.
6. On the Action menu, click Properties.
7. In Properties, click the Directory Security tab.
8. Under Anonymous access and authentication control, click Edit.
In Authentication Methods, click to select Integrated Windows authentication. Click to clear all other check boxes.
Click OK.
9. In Properties, click OK. The ASPNETWinAuth Web application is now configured to accept valid user accounts.

Configure the ASP.NET application

After you configure the IIS Web site for Integrated Windows Authentication, you must configure the ASP.NET application to recognize authenticated users. To do this, you must change the Web.config file. In the Web.config file, locate the tag, and then set the mode attribute to Windows, as in the following example:

<authentication mode="Windows" />

Test authentication

To test your Windows authentication setting, follow these steps:
In Microsoft Internet Explorer, view the WebForm1.aspx page. This page is located in the //Localhost folder. For example:
//Localhost/ASPNETWinAuth/WebForm1.aspx
Because Integrated Windows Authentication uses the current Windows user information on the client computer for the authentication, it does not immediately prompt the user for a user name and password. However, if the authentication exchange cannot identify the user, a dialog box appears that prompts the user for a Windows user account user name and password.
Type a valid user name and password. When the page loads, your user name appears in the following format:
DomainName\User Name

Restrict access

In ASP.NET, you set authorization to the application by adding settings in the Web.config file. You can specify which users or groups are permitted to have access to what resources as follows:
To permit all users of an NT Group named Managers to have access to your resources, use the following code:

<configuration>
  <system.web>
    <authorization>
      <allow roles="domainname\Managers" />
      <deny users="*" />
    </authorization>
  </system.web>
</configuration>

To permit only specific users to have access, use the following code:

<configuration>
  <system.web>
    <authorization>
      <allow users="domainname\user1,domainname\user2,domainname\user3" />
      <deny users="*" />
    </authorization>
  </system.web>
</configuration>

Note You can specify multiple roles or users by using a comma separated list. Verify that you use the correct case when you specify the configuration file element and the associated attribute values. This code is case sensitive.

answer Mar 30, 2017 by Shivaranjini
...