Friday, October 19, 2012

Caching in WCF

I read in quite a few blogs that caching with HttpRuntime.Cache was possible in WCF (although not recommended by Microsoft). I decided to give it a try and it seemed to be working. After a while I noticed that the cache was not caching anything (oh suprise!). Instead of writing something from scratch I found this article on CodeProject http://www.codeproject.com/Articles/46945/WCF-Cache. It definitely saved me some time!

Wednesday, October 17, 2012

IE 8 mouseover vs mouseenter

In a nutshell, mouseover doesn't work correctly in IE8. I noticed it when a div showed flickering behavior and I could only blame it on the binded event. I couldn't find a lot of information on this, except some blogs that recommended using mouseenter. It's a quick fix and works great.