![]() |
|
|
+ Search |
![]()
|
Apr 13th, 2004 06:41
Nathan Stanford, http://www.cftipsplus.com/cftips.cfm?issueid=1
http://www.cftipsplus.com/cftips.cfm?issueid=1 I. ColdFusion Code: Output Text in 2,3,4,... Rows You can just modifiy the number 2 after the MOD and change the Xquery to whatever your query name is and of course the var to your own var. <table> <tr> <cfoutput query="Xquery"> <td>#var#</td> <cfif Xquery.CurrentRow MOD 2 IS 0> </tr> <tr> </cfif> </cfoutput> </tr> </table>