thank you so far. I'm sorry, that I didnt' work it out so far. I have something like that:
<cfloop index="ArrayIndex" from="1"
to="#ArrayLen(res)#">
<cfoutput>#res[ArrayIndex].robots#</cfoutput>
</cfloop>
and I tried several other things, but nothing worked so far. I'm sure, that I'm really close to the solution, but I still make sth. wrong. Maybe you can give me a hint.
thanks...
Did you ever get it working? It's been a while since the last post.
Every res[ArrayIndex] is a structure. You can find the key names with structKeyList(), and proceed from there on.
<cfscript>
for (arrayIndex = 1 ; arrayIndex <= arrayLen(res) ; arrayIndex++)
{
sklist = structKeyList(res[arrayIndex]);
writeOutput(res[arrayIndex][listFirst(sklist)] & " = ");
writeOutput(res[arrayIndex][listLast(sklist)] & "<BR/>");
}
</cfscript>
--
-Fernis - fernis.net - ColdFusion Developer For Hire