Get all domain users

  • Thread starter S. Hussain Akbar
  • Start date
S

S. Hussain Akbar

In my internal-use apps, I need the usernames. In non-Net ASP, I could fetch
them from the Domain users list using:

Set objDomain = GetObject("WinNT://MyDomain,domain")
objDomain.Filter = Array("user")
For Each objUser In objDomain
Response.Write "<TR>" &
"<TD>" & objUser.Name & "</TD>" & _
"<TD>" & objUser.FullName & "</TD>" & _
"<TD>" & objUser.Description & "</TD>" & _
"</TR>"
Next

What's the equivalent in ASPNET?
 

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

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,007
Latest member
obedient dusk

Latest Threads

Top