We have many common MIME type settings in our server by default, but not all of them. If the one you need is not set by default, you can set it yourself in your web.config file, here is the sample
<
configuration
>
<
system.webServer
>
<
staticContent
>
<
mimeMap
fileExtension
=
".test"
mimeType
=
"video/mp4"
/>
</
staticContent
>
</
system.webServer
>
</
configuration
>
Note, please replace the
"mimeMapfileExtension" value with your file extension and replace "mimeType" value with corresponding MIME type.
Article ID: 309, Created: January 2, 2013 at 7:34 PM, Modified: January 2, 2013 at 7:34 PM