The mysterious CFSCRIPT...... Help

2001-01-08 Thread Jeff W

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



Re: The mysterious CFSCRIPT...... Help

2001-01-08 Thread Michael Dinowitz

www.houseoffusion.com/script.ppt

Michael Dinowitz
Publisher: Fusion Authority weekly news alert
(www.fusionauthority.com/alert)
Listmaster: CF-Talk, CF-Jobs, Spectra-Talk, Jrun-Talk, etc.
(www.houseoffusion.com)



 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



RE: The mysterious CFSCRIPT...... Help

2001-01-08 Thread Park, Simon

If you get Ben Forta's Advanced ColdFusion Development book, he has a whole
chapter on CFSCRIPT.

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Simon Park  Computer Systems Management, Inc.
Ph: 703-823-4300 x119   205 South Whiting Street #201
fax: 703-823-4301   Alexandria, VA  22304
 http://www.csmi.com  

 -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.

~~
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



RE: The mysterious CFSCRIPT...... Help

2001-01-08 Thread Robert Everland III

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