Hai
I am using NetAdvantage for .NET 2007 Vol. 3 CLR 2.0 and i had used the application styling in my project,every thing works fine .
when i run my application the corespoding style is rendered correctly and the control take the correct styles.
TheProblem iam facing is that when i hover my mouse over controls like tab,grid and menu its flikering and the browser is downloding the images every time when iam hovering the mose over the above controls.
Is there any way to solve the problem.
Plz hellp me
Regards
Rajesh Kamalakshan
Thanks for the Help .The problem i was faicing is now solved.Thanks a Looooooooooooooot.
This is a general problem with Internet Explorer browsers and can be noticed in IE5, IE6 an IE7. The problem is that background images specified in CSS are not cached and can cause a "flicker" effect. Unfortunately this problem is still not addressed by the IE team, however some clever folks figured out a way to explicitly force the IE browser to cache the images:
The solution is to use the following javascript in the beginnig of your page:
try { document.execCommand("BackgroundImageCache", false, true);} catch(err) {}
More information can be found here:
http://www.mister-pixel.com/#Content__state=is_that_simple