I know there are many ways to prevent image caching (such as via META tags), as well as a few nice tricks to ensure that the current version of an image is shown with every
try below solutions,
myImg.src = "http://localhost/image.jpg?" + new Date().getTime();
Above solutions work for me :)
Add the image url like this
"image1.jpg?" + DateTime.Now.ToString("ddMMyyyyhhmmsstt");
Just add random string in the querystring
Thank You
Raju Jetla