Click here to Skip to main content
15,885,546 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
A page P contain user control U . That user control U contains a timer T . When the timer T tick event occurs then the page P is flickered during scrolling of the Page P.

Any solution to stop this page flickering.

Timer T tick every 8 seconds.
Posted
Comments
Bojjaiah 25-Apr-13 7:23am    
are you tried UpdatePanel?

Use Update Panel or Add below in your Page directive

MaintainScrollPositionOnPostback="true"
 
Share this answer
 
Comments
[no name] 25-Apr-13 9:22am    
i used all of them. Scenario is as below:

Page P contains User control U and UserControl U contains Timer control T and the Timer Control T is in Update panel.
Issue is that. when the Timer Tick event fires on every 8 second . the Page P is flicker every after 8 second...

I used the Jquery to Start & Stop the timer control T .
During page load i stopped the Timer Control T. at that time its working fine. For some event i Start the timer control T. but when i want to stop using same code as i have done during page load in Jquery but that Timer Tick event is not going to stop...so flickering continues when Page P is scrolling .... after 8 second....
Be sure to use only asynchronous postback triggers for your update panel.

On page P keep the usercontrol in an Update panel and set update mode to always.

it might work try it out.
 
Share this answer
 
Comments
[no name] 29-Apr-13 5:58am    
any views...

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900