NTLM credentials -> query Active Directory -> email address

  • Thread starter Thread starter Jim Adams
  • Start date Start date
J

Jim Adams

Given NTLM credentials (domain\username) that can be read from browser
variables by an ASP.Net page, I need to query Active Directory and
extract that user's email address property.

Can someone provide a pointer to how this can be done, preferrably in
VB.Net.

Thanks,

Jim
 
within the framework you'll work with the DirectoryServices
namespace...specifically the DirectorySearcher class library. take a look
at that for some examples on MSDN. you'll have to know the AD schema
variable you are looking for...

-th
 
Back
Top