Click to See Complete Forum and Search --> : How to do processing 'silently'...


cusimar9
10-19-2006, 05:33 PM
I'm writing some website analytics code, some of which does some processing. I obviously don't want it to make the web page slow down though, and I fear that, since its written in ASP, the server will wait until all processing is complete before serving the page.

Is there any way I can avoid this delay? All I want is for the page to be served 'as is', and then it can continue doing its stuff for the next few seconds.

Maybe I just need a 'response.flush' statement before the analytics code?

so_is_this
11-02-2006, 12:27 AM
Did you try that? ...and did it work?

cusimar9
11-11-2006, 04:12 PM
Yes that works :)