There is an error in this code
Complex object types cannot be converted to simple values.
The expression has requested a variable or an intermediate expression result as a simple value, however, the result cannot be converted to a simple value. Simple values are strings, numbers, boolean values, and date/time values. Queries, arrays, and COM objects are examples of complex values.
The most likely cause of the error is that you are trying to use a complex value as a simple one. For example, you might be trying to use a query variable in a cfif tag.
The error occurred in D:\Inetpub\wwwroot\sgordon
24 : <cfloop list="#qdata.columnlist#" index="i">
25 :
26 : <td>#qdata[i]#</td>
27 : </cfloop>
28 : </tr>
Main Topics
Browse All Topics





by: black0psPosted on 2008-12-02 at 11:27:22ID: 23079928
This just loops through the column list of the query.
Select allOpen in new window