How to validate the LDAP user

  • Thread starter Thread starter Raghuram
  • Start date Start date
R

Raghuram

if i want to validate the LDAP user
like i will provide him with the domain name but not the user name and pass
when the user enters the user name and pass i should validate towards my
domain, and he should be an admin

how can i know that user blonging to some group like admin or guest user
 
Raghuram said:
if i want to validate the LDAP user
like i will provide him with the domain name but not the user name and pass
when the user enters the user name and pass i should validate towards my
domain, and he should be an admin

For validating username and password use the third constructor of
DirectoryEntry:

public DirectoryEntry(
string path,
string username,
string password
);

Jan
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top