Server Configuration:ASP

From Svg wiki

To serve your file as SVG (with the correct MIME type) add the following line to the top of your file. Make sure it comes before any of your markup because trying to send an HTTP header after some of the file has been sent to the client will cause an error.

<%Response.ContentType = "image/svg+xml"%>

Do NOT use:

<%Response.AddHeader "Content-Type","image/svg+xml"%>

because this will add a second Content-Type header and break the serving of your SVG file.