Question: flicker on refresh

  • Thread starter Thread starter VB Programmer
  • Start date Start date
V

VB Programmer

My webform is datadriven and auto refreshes every 10 seconds. Is there a
way to avoid the "flicker" when I refresh the page?
 
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
 
Any ideas why SmartNavigation doesn't stop the "flickering" of the page?

Thanks
 
Back
Top