This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfscript> | |
myOriginalQuery = queryNew("id,value", "integer,varchar"); | |
for (i = 1; i <= 10; i++) { | |
queryAddRow(myOriginalQuery); | |
querySetCell(myOriginalQuery, "id", i, i); | |
querySetCell(myOriginalQuery, "value", "Value " & i, i); | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfsavecontent variable="ret"> | |
<script nonce='#now()#'> | |
function fn(){ | |
<!--- commento che verrà ignorato ---> | |
alert('test') | |
} | |
fn(); | |
</script> | |
</cfsavecontent> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfscript> | |
var detailType = "personal" | |
var addressFieldIdMaps2 = [ | |
"#detailType#_address_1" | |
, "#detailType#_address_2" | |
, "#detailType#_address_3" | |
, "#detailType#_town_city" | |
, "#detailType#_county" | |
, "#detailType#_postcode" | |
, "#detailType#_country" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfscript> | |
local.cfcs = { | |
clientfactory = "db_drivers1553", | |
nmfactory = "nm_enty, zonetrasportatori" | |
}; | |
writeDump(var=local.cfcs,label="Dump di local.cfcs"); | |
</cfscript> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfscript> | |
local.cfcs = { | |
clientfactory = "db_drivers1091", | |
nmfactory = "nm_enti,zonetrasportatori" | |
}; | |
writeDump(local.cfcs) | |
</cfscript> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfscript> | |
insieme=[]; | |
arrayDelete(insieme,""); | |
</cfscript> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfscript> | |
insieme=""; | |
prova = arrayAppend(insieme,"valore"); | |
writeDum(prova); | |
</cfscript> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfscript> | |
insieme=""; | |
prova = arrayAppend(insieme,"valore"); | |
writeDum(prova); | |
</cfscript> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfscript> | |
insieme=""; | |
prova = arrayAppend(insieme,"valore"); | |
writeDum(prova); | |
</cfscript> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfscript> | |
insieme=""; | |
prova = arrayAppend(insieme,"valore"); | |
writeDum(prova); | |
</cfscript> |
NewerOlder