dhborchardt
MIS
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>
Thanks
Dale
<HTML>
<BODY>
3.asp
<%
Set cont = GetObject("LDAP://Mail01")
For Each obj in cont
Response.Write obj.Name & "<BR>"
Next
%>
</BODY>
</HTML>