page cycle and long query - tough one

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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?...
    4. 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...
    5. 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...
  3. #2

    Default 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

  4. #3

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139