What should I do to change one aspx page to have utf-8 encoding?
my web.config has the following code:
Try to insert
Response.ContentEncoding = System.Text.Encoding.UTF8;
In your Page_Load if you want to do it dynamically.
Page_Load