reeseatwsu
MIS
I want to query my Active Directory and find ALL attributes for a user. I have my attributes="*" but when I do this, I do not know how to display the results?
Can anyone help me? Instead of doing just a
<cfoutput #dn# </cfoutput>...what do I need to put. My code is below:
<cfldap name="rs" action="QUERY"
attributes="*"
start="dc=hfc,dc=ad" filter="(samaccountname=#attrib#)"
scope="SUBTREE"
server="corprddc1"
port="389"
timeout="5" username="#session.username#@hfc.ad"
password="#session.password#">
<cfoutput #dn# </cfoutput>
I am just not sure how to display the returned data...
THANKS!
Can anyone help me? Instead of doing just a
<cfoutput #dn# </cfoutput>...what do I need to put. My code is below:
<cfldap name="rs" action="QUERY"
attributes="*"
start="dc=hfc,dc=ad" filter="(samaccountname=#attrib#)"
scope="SUBTREE"
server="corprddc1"
port="389"
timeout="5" username="#session.username#@hfc.ad"
password="#session.password#">
<cfoutput #dn# </cfoutput>
I am just not sure how to display the returned data...
THANKS!