Which of these would be faster? It's much easier to slap a <cfoutput> at
the beginning of the block, but i remember reading that with a cfoutput,
the cf server must "inspect" each <> to see if it's CF code. On the other
hand, it removes the need to switch between CF and HTML "mode".
Am I making any sense?
<cfoutput>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td>Name</td> <td>#dbquery.name#</td>
<td>Address</td> <td>#dbquery.address#</td>
..... for a few more db fields
</tr>
</table>
</cfoutput>
OR
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td>Name</td> <td><cfoutput>#dbquery.name#</cfoutput>
.... for the rest of the fields
Mike Chiu
[EMAIL PROTECTED] http://yoyoman.insync.net
"No one who believes in him will be put to shame." (Romans 10:11)
------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.