 |
BOOK: Beginning ASP.NET 3.5 : in C# and VB BOOK ISBN: 978-0-470-18759-3
 | This is the forum to discuss the Wrox book Beginning ASP.NET 3.5: In C# and VB by Imar Spaanjaars; ISBN: 9780470187593 |
|
Welcome to the p2p.wrox.com Forums.
You are currently viewing the BOOK: Beginning ASP.NET 3.5 : in C# and VB BOOK ISBN: 978-0-470-18759-3 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
|
|
|
|
|

November 23rd, 2009, 02:42 PM
|
|
Authorized User
|
|
Join Date: Nov 2009
Posts: 15
Thanks: 0
Thanked 1 Time in 1 Post
|
|
No Flicker Firefox
It is interesting that in doing the first Ajax exercise, there was no flicker in Mozilla Firefox 3.5.5 even before entering the Ajax code. Before and after were identical. Flicker in the before code was quite apparant in the latest MS IE
|
|

November 23rd, 2009, 03:06 PM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
|
|
Hi there,
Yes, the problem is not always easy to see at first, especially not on a local machine. However, it becomes more apparent when your pages grow in size, or when you're using a remote server.
Cheers,
Imar
|
|

November 23rd, 2009, 03:35 PM
|
|
Authorized User
|
|
Join Date: Nov 2009
Posts: 15
Thanks: 0
Thanked 1 Time in 1 Post
|
|
Thanks. Great book. You have a done a great job in anticipating problems for people and suggesting solutions to what might happen. This shows a lot of care on your part in putting this book together. Well done.
|
|

November 23rd, 2009, 03:37 PM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
|
|
Thank you! Spread the word, Spread the word.... ;-)
Imar
|
|

November 23rd, 2009, 03:53 PM
|
|
Authorized User
|
|
Join Date: Nov 2009
Posts: 15
Thanks: 0
Thanked 1 Time in 1 Post
|
|
OK - I just did.
|
|

November 23rd, 2009, 03:56 PM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
|
|
Excellent! Thanks for that.....
Imar
|
|

November 30th, 2009, 02:14 PM
|
|
Authorized User
|
|
Join Date: Jun 2009
Posts: 70
Thanks: 18
Thanked 1 Time in 1 Post
|
|
I have found that flicker-free change over between pages generally is a problem with IE - I believe it's inherent with IE - but not most other browsers. It became annoying for one of my sites when I went for a dark background. Following a tip I spotted in another forum, I dropped the following in the head:
Code:
<meta http-equiv="Page-Enter" content="progid:DXImageTransform.Microsoft.Fade(Duration=0.1)" />
<meta http-equiv="Page-Exit" content="progid:DXImageTransform.Microsoft.Fade(Duration=0.1)" />
and the problem has gone.
|
|

November 30th, 2009, 03:38 PM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
|
|
It all depends on the site, its content, its design, the browser, the performance of your PC, the bandwidth on your network and more.
AJAX and technologies like the UpdatePanel are designed for other purposes than the progid filters for IE. The latter enable you to maintain the old page in the browser until the new one has fully loaded. UpdatePanels on the other hand are designed to update only part of the page without affecting the rest. This is often used to avoid page flicker, but can also be used for other scenarios (continuously refreshing some content from the database for example).
So, IMO, there is a lot of room for the UpdatePanel, even if other browsers suffer less from page flicker....
Cheers,
Imar
|
|
 |