How to get the character number of a character!!
Let's assume you know the character.. in this case a tab, and you wan't to know the chr() value.
<cfoutput>
#Asc(" ")#
</cfoutput>
Output is 9, you can use this number to place tabs in your code like this.
<cfset row = value1 & chr(9) & value2>
The result in this case is a tab-delimited row of records.
7627 viewed | Your opinion... | del.icio.us | Digg it | Tjarko @ 05/11/04 0:00 cet



