.NET ez 2012-08-24
如果檔案為 .Net 倒是很好處理,不過如果為 html 就沒辦法透過程式加上 Content-Type,所以此時只要修改 web.config 即可達到效果。
打開 web.config 進行編輯,在 <system.webServer> 下的 <staticContent> 裡加入以下:
<remove fileExtension=".htm" /> <mimeMap fileExtension=".htm" mimeType="text/html; charset=UTF-8" /> <remove fileExtension=".html" /> <mimeMap fileExtension=".html" mimeType="text/html; charset=UTF-8" />
查看 Header 可以發現已經修改成功。
標籤: .NET
本文章網址:
https://www.ez2o.com/Blog/Post/csharp-Change-Header-Content-Type
https://www.ez2o.com/Blog/Post/289
https://www.ez2o.com/Blog/Post/csharp-Change-Header-Content-Type
https://www.ez2o.com/Blog/Post/289