use a little javascript..and a div tag...

wrap your please wait stuff in in div tag. The once your page starts
loading use javascript to hide your div tag.
Your code would look something like:

<div id="pleaseWait">
Please Wait .....
</div>
<code stuf here>
<!--- note this is inline javascript --->
<script>
getElementById("pleaseWait").style.display = 'none';
</script>

Hope that gets you started down the right path. 

Adam H

On 7/4/05, Ian Vaughan <[EMAIL PROTECTED]> wrote:
> Hi
> 
> I am using CFFLUSH before the search results come back from Verity to
> display a Please Wait message.
> 
> So my code is like..
> 
>     <h1>Intranet Search Results.</h1>
>     <br>
>         Please wait............
> 
> <cfflush>
> 
>         <CFSEARCH
>         name = "GetResults"   etc......................
> 
> 
> How can I remove the 'Please wait............' text from the end users
> screen after Verity has returned the search results ?
> 
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:211099
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to