My website is a combination of classic ASP and ASP.NET
My pages’ default encoding is currently ISO-8859-1.
Even if there’s no <meta> tag, the response page will be encoded ISO-8859-1.
How to change it to UTF-8?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could try adding the header to the HTTP Response Headers list for that site. If none is specified, it will be delivered in whatever the user agent requests, which is likely why you’re seeing the ISO-8859-1
“Properties” => “HTTP Headers” => “File Types…” => “New Type…”. Put in the extension you want to map, separately for each extension; IIS users will probably want to map .htm, .html,… Then, for Content type, add “text/html;charset=utf-8” (without the quotes; substitute your desired charset for utf-8;
FROM: http://www.w3.org/International/O-HTTP-charset.en.php