Click here to Skip to main content
15,900,818 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,
I am setting div scroll postion on postback. it does but it flicker when set the scrollposion. What should i do to avoid flickering when set scroll position?
I am setting scroll position on javascript pageLoad method.
Posted
Comments
[no name] 17-Jan-13 7:02am    
<meta http-equiv="Page-Enter" content="blendTrans(Duration=0.2)" />
<meta http-equiv="Page-Exit" content="blendTrans(Duration=0.2)" />

in head tag works only for IE change duration and observe
amit_83 17-Jan-13 7:08am    
it doesn't work

1 solution

Will you consider using ASP.Net Ajax Update panel as a solution? It supports partial page postback. You may put your web element inside this update panel, which is triggering the postback and the controls which are getting rendered as a part of that postback.

Please note that you will have to add AJAX Script manager at the top of the page to use update panel feature.

Use this link as guide to use AJAX update panel feature. Postback flickering will be reduced to a minimal zero after implementing this.
 
Share this answer
 

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