Reputation: 1511
I have developed a simple ASP.NET website; I have written a simple CSS to show a background image for that, but when I want to change the background image, the website shows the same image; did the ASP.NET cache the image?
The background image is banner.jpg
and shows a picture, but I want to change that picture and another file replaces banner.jpg
; the website shows the last picture.
Upvotes: 1
Views: 269
Reputation: 134
sounds like an unwanted image cache. do a hard refresh after replacing the image file by pressing ctrl + F5 and it should pull from the replaced image file
Upvotes: 3