以下這個可以用在 global.asax 中, 但若是執行到了 aspx 就無效了.
HttpContext.Current.Response.Headers.Add("Content-Type", "application/json; charset=utf-8");
在 aspx.cs 中, 指定 ContentType 要用以下的方式
Response.ContentType = "application/json; charset=utf-8";