ASP.NET master page - reload-flickering problem in IE
Is there a possibility/trick (besides the usage of the AJAX update pan开发者_C百科el) to prevent the ASP.NET master page reload flickering effect in IE) every time the user makes a postback?
Maybe this trick will help you (for IE)
http://weblogs.asp.net/stefansedich/archive/2008/01/31/stop-ie-flickering-between-pages.aspx
http://nishantpant.wordpress.com/2006/11/02/fake-ajax-fajax-use-this-for-a-cool-tranisition-effect/
http://www.codesack.com/aspnet/removing-flickering-and-postback-in-master-page-fajax/
Short answer: No.
Without the UpdatePanel (or some other AJAX magic) the entire page is reloaded from the server every postback. Hence the flicker.
精彩评论