
October 19th, 2004, 07:35 PM
|
|
Registered User
|
|
Join Date: Oct 2004
Posts: 5
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
How do I get my ASP.net application to display non-English language
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 articlesFor more information on Internationalization, please review the related links above.
Regards,
Jeremiah Anderson
http://www.seekdotnet.com
|