Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

address list from exchange

Status
Not open for further replies.
Dec 11, 2000
46
US
I am building a form that will be sent off in email. I have the CDO part figured out and I have but one field left to populate with the email names from our exchange server. I need to figure out the LDAP path to get the EMail names. Here is what I have so far that does work. I would like to be able to Response.Write the LastName, FirstName, and EMail name.
Thanks
Dale

<HTML>
<BODY>
3.asp
<%
Set cont = GetObject("LDAP://Mail01")
For Each obj in cont
Response.Write obj.Name & "<BR>"
Next
%>
</BODY>
</HTML>

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top