Home : ASP.NET :
How do I get my ASP.net application to display non-English language

Category : ASP.NET

ASP.net allows the developer to encode the page using character sets other than unicode.  If your ASP.net page containing foreign characters does not render properly when served from our webservers, you may need to change the FileEncoding setting in the web.config file.

<globalization requestEncoding=""
       responseEncoding="
"
       culture="en-US"
       uiCulture="de-DE"/>
 
For more information on code page, please review these articles

For more information on Internationalization, please review the related links below.


Created : 23 Jun 2002
Modified : 23 Jun 2002
Viewed : 1238 times.
Print Article