Skip to main content
Inspiring
October 22, 2008
Question

How to output exchange server info?

  • October 22, 2008
  • 2 replies
  • 509 views
I have a page where I am connecting to a microsoft exchange server to retrieve my calendar information. How do you output this information so I can make my own tables with the information? If I do a cfdump var="#mycalendar#"> I get all of the information but in the cfdump created tables. How do I get each column variable so I can build it into my website?
This topic has been closed for replies.

2 replies

Participating Frequently
October 22, 2008
The data returned from the CFEXCHANGE tags are query objects. You can use CFOUTPUT or CFLOOP to loop over the records in the query just like a database-originated query.
siriivenAuthor
Inspiring
October 23, 2008
Thanks. I ended up looping a query and everything is running now!
tclaremont
Inspiring
October 22, 2008
Doesn't the CFDUMP show you the field names to the left of the field contents? Just refer to those field names as CF variables.