S
Steve
I wish my aspx pages to be interpreted as UTF-8 by browsers.
Apart from setting the following in the web.config file:
<globalization fileEncoding="utf-8" requestEncoding="utf-8"
responseEncoding="utf-8" />
1. Do I also have to specify <meta http-equiv="Content-Type"
content="text/html; charset=utf-8"> in every aspx page?
2. Or also specify utf-8 in the page directive of every page?
In short, I am a bit worried that when I see the source of my generated
aspx pages I see no meta information regarding the encoding. Should I
also be adding this into every page or is it not necessary as long as
it's specified in web.config?
Apart from setting the following in the web.config file:
<globalization fileEncoding="utf-8" requestEncoding="utf-8"
responseEncoding="utf-8" />
1. Do I also have to specify <meta http-equiv="Content-Type"
content="text/html; charset=utf-8"> in every aspx page?
2. Or also specify utf-8 in the page directive of every page?
In short, I am a bit worried that when I see the source of my generated
aspx pages I see no meta information regarding the encoding. Should I
also be adding this into every page or is it not necessary as long as
it's specified in web.config?