Ok, here is my question. I have a site where people can upload images. I store the images in a folder that is unique to the user. Let's say I am logged in and my upload folder is name "MyUploads". I can only upload 10 photos. So, when I upload a photo it gets put in "MyUploads" and it gets named "01,jpg". The next one I upload gets named "02.jpg". This goes on until I have 10 images in my folder.
No, I go an delete the photo named 10.jpg. This removes the reference from the Database, and it removes the file 10.jpg from the server. I then upload a new photo. Which gets put int "MyUploads" and it gets named 10.jpg.
Here lies the problem. Since it is named 10.jpg. I still see the old image. Of course, once I refresh, I see the new. Unforunatley, most users think cache is something they use to buy lunch! I use the no-cache settings for my ASP and they work beutifully on the code. the problem is that actual image in cache. Is there any way to tell the client machine to dump the image out of cache. I would prefer this to reloading the page.
If anyone can help I would appreciate it!!