I need to display the various field/column names from various SQL tables. To do this I use:
<CFLOOP INDEX="FieldName" LIST="#tbl.ColumnList#" DELIMITERS=",">
Within this, I want to only display twenty columns/fields on my page. I usually rely on cfoutput statements or cfloop query statements. But, I have been unable to use these within my cfloop tag.
Any ideas?
<CFLOOP INDEX="FieldName" LIST="#tbl.ColumnList#" DELIMITERS=",">
Within this, I want to only display twenty columns/fields on my page. I usually rely on cfoutput statements or cfloop query statements. But, I have been unable to use these within my cfloop tag.
Any ideas?