Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

How would I output part of the result variable? <cfldap?

Enthusiast ,
Jul 09, 2009 Jul 09, 2009

How would I output part of the result variable? For example just output the name attribute to the page?

<cfldap
          server = "secret"
          action = "query"
          name = "results"
          start = "secret"
        
       
    attributes="objectsid,name,employeenumber,memberof,title,mail,telephonenumber,givenname,s n,SAMAccountName,l,st,streetaddress,postalcode,physicalDeliveryOfficeName,depart ment"


         username="MONEYCORP\presentation"
               
        password= "tomorrow"
       
            >
<cfdump var="#results#">

376
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jul 09, 2009 Jul 09, 2009
LATEST

sorted

<cfoutput>#results.name#</cfoutput>

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources