> At MXDU i saw one of the preseters code and it had CFTRY in CFSCRIPT
> Does anyone know the syntax to to a cftry within cfscript?

Hi Steve,

Have you read cfdocs/CFML_Reference/Tags-pt230.html ?
Doesn't really matter either way. Try:

<cfscript>
    try{
      if (expression) {
        do stuff;
      }
    }
    catch(any excpt){
      do other stuff;
    }
</cfscript>

hth,

Ben



---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

MX Downunder AsiaPac DevCon - http://mxdu.com/

Reply via email to