Validate user and password in the domain

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to create a form that the user place the UserId and Password, and next I'll check if is it right in he Server Domain?

How I can do this??
 
Have a look at System.DirectoryServices namespace

Daniel said:
I need to create a form that the user place the UserId and Password, and
next I'll check if is it right in he Server Domain??
 
I've never actually used it...

But AuthenticationTypes is simply an Enum, so its not going to serve you
much good to start form, you might want to look at the DirectorySearcher
class, I think that may help you a little more.

-CJ
Daniel said:
Hi Taylor,
I look the .Net FrameWork Documentation and I found the namespace
"System.DirectoryServices" and in this namespace there is a Enumerations:
"AuthenticationTypes", but I don't understand the ReadonlyServer is work.
 
Back
Top