Force PNG to download instead of opening in browser with IIS - Stack Overflow
مراحلی رو که در اینجا گفته انجام بدید
یا در فایل web.config این خطوط رو اضافه کنید
<?xml version="1.0"?>
<configuration>
<system.webServer>
<httpProtocol>
<customHeaders>
<clear />
<add name="Content-Disposition" value="Attachment" />
</customHeaders>
</httpProtocol>
</system.webServer>
</configuration>