I have a function for generating a spreadsheet and it works fine. I use the following code to call it
<CFOUTPUT>
<CFSET K=GenerateSpreadsheet("Freddi","#GetNames#")>
#K#
</CFOUTPUT>
How do I rewrite it as
<CFOUTPUT>
#GenerateSpreadsheet("Freddi","#GetNames#")#>
</CFOUTPUT>
without the hashes around GetNames causing a problem?