My Account   Contact Us    
  
» HomeProductsSupportDeveloper CommunityCompany
Displaying a flash message while you process data
Author: unknown
Category: ColdFusion
Use Cflush to let the user know to wait while the page processes the data
<!--- Your query goes here --->
<cfquery name="QueryName" datasource="YourDatasourceName">
SELECT *
FROM YOURTABLE
</cfquery>

<!--- Use Cflush to let the user know to wait while the page processes the data --->

<div align="center"><strong>Your query is processing.  Please Wait....</strong></div><br><br>
<CFOUTPUT>#RepeatString(" ",250)#</CFOUTPUT>
<CFFLUSH>
<CFLOOP INDEX="X" FROM=1 TO="100">
 <CFSET A = X * 2>
</CFLOOP>

<!--- Display your results here --->



Content Management Powered by ActivEdit  ActivEdit Browser Based WYSIWYG HTML Editor

More Code Samples

Sign up for our newsletter: | Subscribe with RSS: RSS
© ActivSoftware 1999 to 2005 | Privacy Statement