Question: flicker on refresh

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

  1. #1

    Default Question: flicker on refresh

    My webform is datadriven and auto refreshes every 10 seconds. Is there a
    way to avoid the "flicker" when I refresh the page?


    VB Programmer Guest

  2. Similar Questions and Discussions

    1. Newbie Question: Screen Refresh?
      I'm a php newbie. I just bought a giant reference book which looks great - "PHP5 and MySQL Bible" by Converse, Park and Morgan. There's something...
    2. 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...
    3. How do you this FLicker effect....
      Can anyone show how to do this roll over flicker effect when you go over the images and text.. ...
    4. using refresh button on the menu bar to refresh two frames.
      All, I have an ASP site that uses frames two frames. (yes I should be using include files, but we started ou using frames so we have been stuck...
    5. Problem with refresh button breaking automatic refresh
      As a public service, I'm posting the solution to a problem I had. The bizarre thing is that I think this should have created an error. Instead, it...
  3. #2

    Default Re: Question: flicker on refresh

    Smart Navigation can accomplish the illusion that the page did not refresh:
    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwebuipageclasssmartnavigationtopic.asp[/url]
    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/cpconpage.asp[/url]

    --
    I hope this helps,
    Steve C. Orr, MCSD
    [url]http://Steve.Orr.net[/url]


    "VB Programmer" <growNO-SPAM@go-intech.com> wrote in message
    news:efoHdS7TDHA.1864@TK2MSFTNGP11.phx.gbl...
    > My webform is datadriven and auto refreshes every 10 seconds. Is there a
    > way to avoid the "flicker" when I refresh the page?
    >
    >

    Steve C. Orr, MCSD Guest

  4. #3

    Default Re: Question: flicker on refresh

    I made a simple webform with a label and a button.
    1. It still flickers.
    2. Doesn't maintain my scroll position on the refresh. Moves webform back
    to the top.

    Here is the Page_Load code:
    Private Sub Page_Load(...) Handles MyBase.Load
    Response.AppendHeader("refresh", "1")
    Label1.Text = Now.ToLongTimeString
    Me.SmartNavigation = True
    End Sub

    Ideas?
    Thanks,
    Robert

    "Steve C. Orr, MCSD" <Steve@Orr.net> wrote in message
    news:%23J2wNG9TDHA.2188@TK2MSFTNGP10.phx.gbl...
    > Smart Navigation can accomplish the illusion that the page did not
    refresh:
    >
    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwebuipageclasssmartnavigationtopic.asp[/url]
    >
    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/cpconpage.asp[/url]
    >
    > --
    > I hope this helps,
    > Steve C. Orr, MCSD
    > [url]http://Steve.Orr.net[/url]
    >
    >
    > "VB Programmer" <growNO-SPAM@go-intech.com> wrote in message
    > news:efoHdS7TDHA.1864@TK2MSFTNGP11.phx.gbl...
    > > My webform is datadriven and auto refreshes every 10 seconds. Is there
    a
    > > way to avoid the "flicker" when I refresh the page?
    > >
    > >
    >
    >

    VB Programmer Guest

  5. #4

    Default Re: Question: flicker on refresh

    Any ideas why SmartNavigation doesn't stop the "flickering" of the page?

    Thanks

    "VB Programmer" <growNO-SPAM@go-intech.com> wrote in message
    news:ejS4FhEUDHA.1740@TK2MSFTNGP12.phx.gbl...
    > I made a simple webform with a label and a button.
    > 1. It still flickers.
    > 2. Doesn't maintain my scroll position on the refresh. Moves webform
    back
    > to the top.
    >
    > Here is the Page_Load code:
    > Private Sub Page_Load(...) Handles MyBase.Load
    > Response.AppendHeader("refresh", "1")
    > Label1.Text = Now.ToLongTimeString
    > Me.SmartNavigation = True
    > End Sub
    >
    > Ideas?
    > Thanks,
    > Robert
    >
    > "Steve C. Orr, MCSD" <Steve@Orr.net> wrote in message
    > news:%23J2wNG9TDHA.2188@TK2MSFTNGP10.phx.gbl...
    > > Smart Navigation can accomplish the illusion that the page did not
    > refresh:
    > >
    >
    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwebuipageclasssmartnavigationtopic.asp[/url]
    > >
    >
    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/cpconpage.asp[/url]
    > >
    > > --
    > > I hope this helps,
    > > Steve C. Orr, MCSD
    > > [url]http://Steve.Orr.net[/url]
    > >
    > >
    > > "VB Programmer" <growNO-SPAM@go-intech.com> wrote in message
    > > news:efoHdS7TDHA.1864@TK2MSFTNGP11.phx.gbl...
    > > > My webform is datadriven and auto refreshes every 10 seconds. Is
    there
    > a
    > > > way to avoid the "flicker" when I refresh the page?
    > > >
    > > >
    > >
    > >
    >
    >

    VB Programmer 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