August 2001
Intermediate to advanced
976 pages
38h 8m
English
StructKeyList — New as of ColdFusion 4.01
StructKeyList(structure)Returns a comma-delimited list containing the names of all the keys
contained in structure. The key names are
returned in all uppercase. Here’s an example that returns a
list containing the names of the keys in a structure called
Stock:
<CFSET Stock = StructNew( )> <CFSET Stock.Company = "Allaire"> <CFSET Stock.Ticker = "ALLR"> <CFSET Stock.Exchange = "NASDAQ"> <CFSET Stock.Price = "66.25"> <CFSET Stock.Change = "+0.375"> <CFSET Stock.LastTradeTime = "10:17AM"> <CFSET Stock.LastTradeDate = "05/17/1999"> <CFSET Stock.Volume = "8300"> The following keys are in the structure <B>Stock</B>: <P><CFOUTPUT>#StructKeyList(Stock)#</CFOUTPUT>
Read now
Unlock full access