> >> Further more this only happens with a for loop inside of a cfscript, 
> this does NOT happen inside of a cfloop!
> 
> A possible reason for this is that cfloop will not evaluate the
> ArrayLen on every iteration of the loop which is very different. 
> While
> there doesn't appear to be a good reason for the error, I would
> presume (based on the fact that cfloop does not break) that changing
> the loop to the following would fix the issue for you:
> 
> <cfset test = ["test1","test2"]>
> <cfscript>
> testLen = ArrayLen(test); 
> for(i=1; i LT testLen; i=i+1) {   
> }
> </cfscript>
> 

I actually tried just that before posting to the list-- same result. :( 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:315644
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to