cfscript is like a dumbed down version of JavaScript, very limited cf in it,
it is good for where you would normally do a lot of cfsets or where there is
huge conditional logic because I have found cfscript throws no whitespace.
An example of cfscript would be something  like this

<cfif this is that>
hey
<cfelse>
hola
</cfif

<cfscript>
if (this is that)
{
        writeoutput("hey");
}
else
{
        writeoutput("hola");
}
</cfscript>

There is a lot of documentation on cfscript under the loaded documentation,
it's chapter 20 under Developing Web Applications with ColdFusion


Bob Everland

-----Original Message-----
From: Jeff W [mailto:[EMAIL PROTECTED]]
Sent: Monday, January 08, 2001 3:58 PM
To: CF-Talk
Subject: The mysterious CFSCRIPT...... Help


I am interesting in learning cfsript

Has anyone seen any tutorials on the web? Is there any books written on it??
To me it seems there is not alot information in even the current cold fusion
books about it. I know its supposed to be simmilar to javascript and
somewhat asp. I've seen SOME cfscript examples. I've seen some conversions
from ASP to CFSCRIPT...

Ideas and Suggestions are GREATLY appreciated.

Jeff
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to