Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best practices for ASP.NET web application localization [closed]

I'm developing a web application that will need to be localized to English and Portuguese (and possible more languages later). I'm aware that the .NET Framework offers full support for UI localization, however, I'm not so sure what's the best approach to implement it.

What do you consider the best practices for a web application localization?

like image 899
holiveira Avatar asked Jan 18 '09 13:01

holiveira


People also ask

How will you localize ASP.NET application?

To opt-in to localization, we need to modify our Startup file. We'll be registering a few services, configuring options, and registering middleware. All steps that are common-place for additions in an ASP.NET application. Starting in our ConfigureServices method, we need to make a call to AddLocalization .

Which control can you use to apply localization?

Localizing Static Text If a page includes static text, you can use ASP.NET localization by including it in a Localize control, and then using explicit localization to set the static text. The Localize control renders no markup; its only function is to act as a placeholder for localized text.


1 Answers

Also have a look at

Globalization and Localization Demystified in ASP.NET 2.0

Pretty good coverage and explanation.

like image 77
rajesh pillai Avatar answered Sep 22 '22 19:09

rajesh pillai