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