Shezi
Shezi

Reputation: 1342

asp.net How To allow only one Domain user

I have looked for this issue on the internet and nothing specifies how to solve my problem.
It is a very small web application hosted on IIS7. In my web.config i have this code:

<system.web>
      <authorization>
        <allow users="WORKGROUP\SOMEONE"/>
        <deny users="?"/>
    </authorization>
    <roleManager enabled="true" />
    <compilation debug="true" targetFramework="4.0" />
</system.web>

When i access my website, it gives me the following error

401 - Unauthorized: Access is denied due to invalid credentials.

I want to authenticate only one domain user and I think i have used everything correctly. Please Guide Me What am i missing here

Upvotes: 0

Views: 2107

Answers (1)

Sean Airey
Sean Airey

Reputation: 6372

You'll need to install Windows Authentication and enable that on the IIS website.

See this post for details on how to install and configure Windows Authentication on Windows 7 and Windows Server 2008R2: http://www.iis.net/configreference/system.webserver/security/authentication/windowsauthentication

Upvotes: 1

Related Questions