What should I do to change one aspx page to have utf-8 encoding?
my web.config has the following code:
Try this;
To set the encoding for an individual page, set the RequestEncoding
and ResponseEncoding
attributes of the @ Page
directive:
<%@ Page RequestEncoding="utf-8" ResponseEncoding="utf-8" %>
Or you can use location
like this:
Read more: How to: Select an Encoding for ASP.NET Web Page Globalization.