I had used this in my code to set the Charset but IE did not like it. Any reason why?
context.Response.Charset = Encoding.UTF8.ToString();
I ended up havi
Context.Response.Charset = Encoding.UTF8.WebName;
Gets the name registered with the Internet Assigned Numbers Authority (IANA) for the current encoding.