asp.net and charsets
Hi
In asp.net security book it says i should always set a character set for a web page. I want to use the utf-8 charset
e.g. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
How do i do this?
Is this characeter set achieved by the following in the web.config or do i need to add some other code to get that charset?
<globalization requestEncoding="utf-8" responseEncoding="utf-8" />
Thanks a lot
andrea
|