Hi
I have an ASP.NET app running in IIS that is hosting files all great but it blocks all *.upd files and says http 404.
If I turn directory listing on it lists the file just great but I cant download it any way...
Is there any way to fix this?
Hi
I have an ASP.NET app running in IIS that is hosting files all great but it blocks all *.upd files and says http 404.
If I turn directory listing on it lists the file just great but I cant download it any way...
Is there any way to fix this?
You have to configure IIS to serve your file type as it won't serve unknown ones: http://support.microsoft.com/kb/326965
You need to add the .upd file type to the IIS Mime Types. You can do this through:
application/octet-stream
, it's
always a good bet).The file should then be downloadable.