Timing of Page Output
I have code like this
<cfoutput>#calculated_value# </cfoutput>
Then More code...................
Then the Calculations code is done here to get the calculated value.
Then More code...................
The issue I have is that I need to output the calculated_value before I calculate it later in the page.
I guess I could move the Calculations code to above the cfoutput, but it's not as easy as it sounds.
Is there a way for the entire page to load, but not output.... do the calculations code to get the calculated_value and then output the entire page with the calculated_value shown at the top?
