How do I get my ASP.net application to display non-English language?

DETAILS

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.

<configuration>
  <system.web>
    <globalization
       fileEncoding="<code page>"
       requestEncoding="<code page>"
       responseEncoding="<code page>"
       culture="en-US"
       uiCulture="de-DE"
    />
  </system.web>
</configuration>

For more information on code page, please review these articles

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

 http://msdn.microsoft.com/library/en-us/vbcon/html/vbtskeditingwebconfigfileforwebformsglobalization.asp
http://msdn.microsoft.com/library/en-us/cpgenref/html/gngrfglobalizationsection.asp
http://www.microsoft.com/globaldev/getWR/steps/wrg_codepage.mspx
http://www.microsoft.com/typography/unicode/cscp.htm
http://samples.gotdotnet.com/quickstart/aspplus/doc/internationalization.aspx

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

After I configure the custom error setting in the control panel, I still get the generic error page?

DETAILS Custom error setting is a web server setting which affects all file types (.htm, .gif,...

How do I connect my ASP.net application to MySQL database?

DETAILSIn general, 2 different methods can be used to connect an ASP.net application to MySQL...

How do I get my ASP.net application to display non-English language?

DETAILSASP.net allows the developer to encode the page using character sets other than...

How do I setup custom error for my ASP.net application?

DETAILS ASP.net has its own built-in error handling.  To set up custom error handling for...

How to enable ASP.NET SQL Server Session on your web application

 DETAILS In ASP.NET, there are 3 different modes for storing session information....