Connecting Tech Pros Worldwide Help | Site Map

Question: flicker on refresh

VB Programmer
Guest
 
Posts: n/a
#1: Nov 17 '05
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
 
Posts: n/a
#2: Nov 17 '05

re: Question: flicker on refresh


Smart Navigation can accomplish the illusion that the page did not refresh:
http://msdn.microsoft.com/library/de...ationtopic.asp
http://msdn.microsoft.com/library/de.../cpconpage.asp

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


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


VB Programmer
Guest
 
Posts: n/a
#3: Nov 17 '05

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...[color=blue]
> Smart Navigation can accomplish the illusion that the page did not[/color]
refresh:[color=blue]
>[/color]
http://msdn.microsoft.com/library/de...ationtopic.asp[color=blue]
>[/color]
http://msdn.microsoft.com/library/de.../cpconpage.asp[color=blue]
>
> --
> I hope this helps,
> Steve C. Orr, MCSD
> http://Steve.Orr.net
>
>
> "VB Programmer" <growNO-SPAM@go-intech.com> wrote in message
> news:efoHdS7TDHA.1864@TK2MSFTNGP11.phx.gbl...[color=green]
> > My webform is datadriven and auto refreshes every 10 seconds. Is there[/color][/color]
a[color=blue][color=green]
> > way to avoid the "flicker" when I refresh the page?
> >
> >[/color]
>
>[/color]


VB Programmer
Guest
 
Posts: n/a
#4: Nov 17 '05

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...[color=blue]
> 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[/color]
back[color=blue]
> 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...[color=green]
> > Smart Navigation can accomplish the illusion that the page did not[/color]
> refresh:[color=green]
> >[/color]
>[/color]
http://msdn.microsoft.com/library/de...ationtopic.asp[color=blue][color=green]
> >[/color]
>[/color]
http://msdn.microsoft.com/library/de.../cpconpage.asp[color=blue][color=green]
> >
> > --
> > I hope this helps,
> > Steve C. Orr, MCSD
> > http://Steve.Orr.net
> >
> >
> > "VB Programmer" <growNO-SPAM@go-intech.com> wrote in message
> > news:efoHdS7TDHA.1864@TK2MSFTNGP11.phx.gbl...[color=darkred]
> > > My webform is datadriven and auto refreshes every 10 seconds. Is[/color][/color][/color]
there[color=blue]
> a[color=green][color=darkred]
> > > way to avoid the "flicker" when I refresh the page?
> > >
> > >[/color]
> >
> >[/color]
>
>[/color]


Closed Thread


Similar ASP.NET bytes