vote up 0 vote down star

I would like to be automatically logged on a website using my password an login that are used on my computer when i open an AD session.

Connection must be granted if i'm in the right AD group .

Any advices ?

flag

1 Answer

vote up 0 vote down

The easiest solution would be to use the built-in ASP.NET Membership and Role system and just use the "Active Directory" membership and role providers.

That way, your user is automatically authenticated, and you can use role-based security in ASP.NET to do something like:

[PrincipalPermission(SecurityAction=Demand, Role='MyAppRole')]

Put this on your critical or sensitvie methods to allow or refuse access to your app.

With the same method, you can also add protected subfolders to your application and protect them by specifying who has access (or not) in your web.config (in that folder).

See a few links for additional details:

Hope this helps a bit.

Marc

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.