Ask a Question related to ASP.NET Security, Design and Development.
-
Patrick #1
Windows Authentication with Asp.net and against Active Directory
How can i use Windows authentication in IIS against AD.
How will i create a WindowsPrincipal object(with asp.net) in the
Context.User property that is used for providing identity and authorization
services to my application.
How will i use the IsInRole method in WindowsPrincipal to return true or
false based on the user's AD group membership.
If u have any code articles and resources please pass it over
Patrick Guest
-
Using Windows Integrated Authentication to access Active Directory
Hi, I have disabled "Anonymous Access" & enabled "Integrated Windows Authentication" on the web server for my ASP.NET application. My Web.config... -
Using Integrated Windows Authentication to access Active Directory
Hi, I have disabled "Anonymous Access" & enabled "Integrated Windows Authentication" on the web server for my ASP.NET application. My Web.config... -
Authentication against active directory
Hello I am developing a ASP.NET site (using VB). I found some code that allows me to authenticate the user trying to access the site against the... -
Forms or windows authentication with active directory?
Hi, I'm having a hard time deciding (figuring out) how to implement security in my asp.net application. Requirements: - Use active directory as... -
Active Directory Authentication in ASP
I have been attempting to find a script that works in a variety of AD implementations to authenticate a user from a form in ASP. After many failed... -
Paul Glavich [MVP - ASP.NET] #2
Re: Windows Authentication with Asp.net and against Active Directory
In IIS, disable anonymous auth, enabled Windows Integrated Auth
In Web.config have something like :-
<identity impersonate="true" />
<authorization>
<allow roles="DOMAIN\DomainGroup" />
<deny users="*" />
</authorization>
--
- Paul Glavich
Microsoft MVP - ASP.NET
"Patrick" <Patrick@discussions.microsoft.com> wrote in message
news:37B151D7-ADE9-4FC1-828F-64CBEFDDAAF4@microsoft.com...authorization> How can i use Windows authentication in IIS against AD.
> How will i create a WindowsPrincipal object(with asp.net) in the
> Context.User property that is used for providing identity and> services to my application.
> How will i use the IsInRole method in WindowsPrincipal to return true or
> false based on the user's AD group membership.
> If u have any code articles and resources please pass it over
Paul Glavich [MVP - ASP.NET] Guest



Reply With Quote

