I need to be able to have a subdirectory of images all PNG\'s to be downloaded instead of opened in the browser window. I am using IIS for the web server.
Is there
As the other posters have said, you need to add the HTTP Content-Disposition header, with a value of attachment, to the HTTP response generated by IIS when serving the PNGs in question.
Not sure what version of IIS you using are but:
IIS6
For IIS7:
Alternatively, place this web.config in the folder with files:
This should force the PNGs served from that directory to be downloadable.