Best way to implement a multilingual in ASP.NET application
The following things/behaviors are expected in multi lingual application. To pick up the correct resources for the logged in user’s language The string sort should happen according to user language (For example: in case of Swedish users, the Swedish alphabets should come after z in Order). The date time format validation should happen according to the user’s language. (For example: fr-FR users can enter dd/mm/yyyy and en-US users can enter mm/dd/yyyy) The decimal validation again should happen according to user’s language (For example: 12,5 is valid in French whereas 12.5 is invalid) Now the