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.

 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.

  • 17 Users Found This Useful
Was this answer helpful?

Related Articles

I get an error 'Server.CreateObject Failed' when I try to use CDONTs. What can I do?

CDONTs is no longer supported on Windows 2003 server.  Microsoft introduced CDO back several...

Do you allow custom COM components?

Yes, we do allow Custom Components and we have to charge setup fee for your COM Components...

ASP to MSSQL connection

Before you can access your MS-SQL Server database from your ASP code , you need to connect to it...

How do I send email from ASP using SMTP Authentication?

Please note that our mail server is configured with Authentication. Below is the code snippet...

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

Custom error setting is a web server setting that sets your website Error Pages, but you can...