This might point you in the right direction;

call this template test.cfm

<CFSET i = #URL.var#>
<CFSET count = #URL.count#>

<CFIF #count# LT 100>
Count is now: #i#<BR>
<CFSET i = i + 1>
<CFLOCATION URL="test.cfm?i=#i#&count=#count#">
</CFIF>

start it off with calling
test.cfm?i=1&count=1

Obviously there are variations on ths such as using SESSION  
variables - it really depends on what yopu are trying to do - I suspect 
you don't want to just count to 100.



> And then execute this I won't see the iteration in my web browser as
> it is being generated but rather the whole page when it is done.
> I would very much know if there is a way to have cf pass the template
> to the webserver step by step until it's done instead.
> 
> Thanks,
> Nicklas af Ekenstam
> http://www.toga.com/
> 
> ------------------------------------------------------------------------------
> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit 
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.


------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to