I have a webBrowser Control. HTML inside webBrowser control displays some small images (4kb each). However when I run my application, Images are not loaded in to webBrowser Control. Also I have used javascript function to keep refreshing page at some interval.
function StartTimer(MS){
TimerObj = setTimeout("window.location.href=window.location.href;",MS);
}
and calling this onload.
<body onload="StartTimer(10000);">
Moreover, If I press Ctrl+N, it opens same page in external IE browser. all images are displyed properly there. Once I do this step and then after, when webBrowser Control refresh page all images are displayed on WebBrowser Control as well. It seems, when I press Ctrl+N IE download images and WebBrowser Control is taking it from cache. But I want it to display at first time.
Any help is appreciated.
Thank You.