Hi,
When a webpage with a image(img_01.jpg) is loaded the image will be cached by the browser. Say that we update img_01.jpg and saves it with the same name, when visiting the same page the old image will be shown from the cache.
How should I handle this in ASP.NET MVC?
I know that in regular ASP.NET(no MVC) a extra component had to be created and this component would add a random number at the end of the filename. How do I do this in ASP.NET MVC?
BestRegards