Despite all attempts and variations to try to display accented characters, I am unable to do so in my ASP Net application.
I've tried adding it to the web config
I've saved both the master and default pages as UTF-8
But whatever I do, I can't seem to be able to show the accented chars
My html mark up looks like this
<h3 class="p5">¿Por qué una “Tercera” Luz de Freno?</h3>
But I only see
Por qu una Tercera...
It ignores the é and simply does not show it. The page is http://www.suplitekcr.com/motos.aspx in case you want to take a look.
If I view source I can see the é and also Fiddler says "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3" which means it is accepting 8859-1 which has the é
Thoughts?
Thanks in advance