Ask a Question related to ASP.NET General, Design and Development.
-
greg #1
page cycle and long query - tough one
Hi
Basically I call a page that does a very long op
(like very long database query)
and display results (possible on another page)
But I need to display a progress bar
for user to see some progress (dummy but at least something)
no frames
There is an old trick in cgi/ asp
for a page that has a long operation
Response.buffering is set false and
initially div with progress bar is displayed
when page finally fully loads (when op is completed)
onload function makes div invisible
but for web forms does not work it seems
untill page_loads for controls finish nothing is displayed whatsoever
Response.bufferoutput is set to false
But that is where op is performed
or is it?
udeas???
Thanks
GSL
greg Guest
-
mySQL query taking too long to return
Greetings, I'm using mySQL in a VB.NET application, connecting it through the myOLEDB Provider. However, it's taking way too long to retrieve... -
long query time, oracle clob data type
I am getting some very long query times (+8 hours) on a very simple query where the fields are not null. This is using ColdFusion MX7, just a... -
how long is query cached without cachewithin tags?
Hi, I have a query that is used later in a "query of query". I was wondering how long the first query is cached if I don't add a cachewithin tag?... -
ADO client disconnects after running a long query
I am having a problem executing long running queries from an ASP application which connects to SQL Server 2000. Basically, I have batches of queries... -
Web page too long
I created a web page from Publisher 2003. I used one of the templates in program, but the pages are 4608px long. I went to the master page and... -
S. Justin Gengo #2
Re: page cycle and long query - tough one
You might want to try using a meta refresh tag and run the query in a
different thread...
Here's a good article:
[url]http://www.ftponline.com/vsm/2002_11/magazine/features/chester/[/url]
With this you could even have a real progress bar.
--
S. Justin Gengo, MCP
Web Developer
Free code library at:
[url]www.aboutfortunate.com[/url]
"Out of chaos comes order."
Nietzche
"greg" <gregl@insauctionNOSPAM.com> wrote in message
news:ecHKUKFVDHA.964@TK2MSFTNGP09.phx.gbl...> Hi
>
> Basically I call a page that does a very long op
> (like very long database query)
> and display results (possible on another page)
>
> But I need to display a progress bar
> for user to see some progress (dummy but at least something)
>
> no frames
>
> There is an old trick in cgi/ asp
> for a page that has a long operation
> Response.buffering is set false and
> initially div with progress bar is displayed
> when page finally fully loads (when op is completed)
> onload function makes div invisible
>
> but for web forms does not work it seems
> untill page_loads for controls finish nothing is displayed whatsoever
>
> Response.bufferoutput is set to false
> But that is where op is performed
> or is it?
>
> udeas???
>
> Thanks
> GSL
>
>
S. Justin Gengo Guest
-
Marc Hoeppner #3
Re: page cycle and long query - tough one
Hi,
I think you can do the same thing if you set Response.BufferOutput = false
and/or use Reponse.Flush().
Best regards,
Marc Hoeppner
NeoGeo
"greg" <gregl@insauctionNOSPAM.com> wrote in message
news:ecHKUKFVDHA.964@TK2MSFTNGP09.phx.gbl...> Hi
>
> Basically I call a page that does a very long op
> (like very long database query)
> and display results (possible on another page)
>
> But I need to display a progress bar
> for user to see some progress (dummy but at least something)
>
> no frames
>
> There is an old trick in cgi/ asp
> for a page that has a long operation
> Response.buffering is set false and
> initially div with progress bar is displayed
> when page finally fully loads (when op is completed)
> onload function makes div invisible
>
> but for web forms does not work it seems
> untill page_loads for controls finish nothing is displayed whatsoever
>
> Response.bufferoutput is set to false
> But that is where op is performed
> or is it?
>
> udeas???
>
> Thanks
> GSL
>
>
Marc Hoeppner Guest



Reply With Quote

