ASP Page Refresh or Display Rate when Accessing an Acccess DB

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default ASP Page Refresh or Display Rate when Accessing an Acccess DB

    This is telephone directory that expands the display at each office to
    show the personnel under each office or section. Everytime this page is
    displayed it seems to reload itself completely and this takes alone time. I
    have been trying to find the code or method to fix this. I tried telling it
    to use a cached copy. No noticable change.

    It could be the embedded tables or because data display portion is written
    entirely using Response.Write.

    I saw a way to get ASP pages to display as the data loads, but I can not
    find that method now. Currently it justs loads all the data first and then
    displays it.

    Philip


    PFMcCracken Guest

  2. Similar Questions and Discussions

    1. Fonts & Refresh rate
      I recently installed Ubuntu : it is running at my Sony LCDs native resolution of 1280x1024. How do I force a refresh rate<faster than 60hz? ...
    2. Xorg refresh-rate problem
      Hi, I cannot run Xorg with higher refressh-rate then 85. Do u have any suggestions how I cn fix this? I've already set the h and v refresh rates...
    3. Director changes my monitor refresh rate
      Whenever I open some of my director files my monitor changes its refresh rate from 85Hz to 60Hz. Even when I change my monitor settings back and...
    4. Frame rate refresh question
      Hi all, Apparently, if I make a Flash movie at, let's say 60 fps, and I load it with a "loadMovie" command into a different movie that runs at 30...
    5. [Sol9] How can I change the refresh rate?
      Hi! I'm using a IBM P260 21" monitor with a Asus v8200 Geforce 3 graphic adapter. Settings in kdmconfig are: Video Device: NVIDIA RIVA TNT2 /...
  3. #2

    Default Re: ASP Page Refresh or Display Rate when Accessing an Acccess DB

    Buffering, which is off by default in NT4 and on by default in Windows 2000
    and later (IIS5 and later).

    <%
    Response.Buffer = False
    %>

    That will turn it off on a per-page basis.

    Ray at work

    "PFMcCracken" <BurmaJapan@aol.com> wrote in message
    news:%23xgYK78KEHA.1132@TK2MSFTNGP12.phx.gbl...
    > This is telephone directory that expands the display at each office to
    > show the personnel under each office or section. Everytime this page is
    > displayed it seems to reload itself completely and this takes alone time.
    I
    > have been trying to find the code or method to fix this. I tried telling
    it
    > to use a cached copy. No noticable change.
    >
    > It could be the embedded tables or because data display portion is
    written
    > entirely using Response.Write.
    >
    > I saw a way to get ASP pages to display as the data loads, but I can not
    > find that method now. Currently it justs loads all the data first and
    then
    > displays it.
    >
    > Philip
    >
    >

    Ray at 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