Windows authentication - disabling password

  • Thread starter Thread starter Slawomir
  • Start date Start date
S

Slawomir

I'm a new in ASP.NET Word. Just finishing writing my first web
application (CMS). It should be available anonymously for all users, but
some part (admin) should be available only for some (authenticated) users.
For folder with admin pages I turned off "enable anonymous access" and
checked "Integrated Windows authentication". It works fine, only users
after logon can use this part of website, but I don't want to display
user and password window. What I need is to automatically authenticate
user basically on windows login. It is possible ? How to configure IIS
and application to turn off this window and authenticate automatically ?
disabling
best,
Slawomir
 
Juan T. Llibre pisze:
Turn off integrated windows authentication and use
roles based authentication, setup the roles in web.config,
and use location tags to mark a directory as available to admins.
Thanx for advice, but I need to use windows authentication. The major
problem is that most of the users in AD doesn't know the password. Whole
corporation use intelligent cards to log on.

best,
Slawomir
 
set the default domain (iis setting for site) to the most common. the
browser does not send the domain name, the mismatch is what causes the
dialog.

-- bruce (sqlwork.com)
 
Here is the answer:
I needed to put my website IP address into local intranet zone in IE
(temporary) or AD (later)

best,
Slawomir
 
Back
Top