Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multi-lingual web application - how do I detect the user's language in ASP.NET?

I'm building an ASP.NET web application, and all of my strings are stored in a resource file. I'd like to add a second language to my application, and ideally, I'd like to auto-detect the user's browser language (or windows language) and default to that, instead of making them choose something besides English. Currently, I'm handling all the resource population manually, so adding a second resource file and language is trivial from my point of view, if I had an easy way to automatically figure out what language to display.

Has anybody done this, or do you have any thoughts about how I might retrieve that value? Since ASP.NET is server-based, I don't seem to have any access to specific browser settings.

RESOLUTION: Here's what I ended up doing. I used a "For Each" to go through "HttpContext.Current.Request.UserLanguages" and search for one I support. I'm actually just checking the left two characters, since we don't support any dialects yet - just English and Spanish. Thanks for all the help!

like image 384
SqlRyan Avatar asked Nov 01 '08 23:11

SqlRyan


4 Answers

Try this in the web.config:

<globalization culture="auto" uiCulture="auto" />

This will cause ASP.NET to auto-detect the client's culture from the request header. You can also set this on a per-page basis via the Page attribute.

like image 138
Maxam Avatar answered Oct 17 '22 05:10

Maxam


This article (linked to archive.org as original link is now dead) might be helpful with auto detecting the browser's language setting.

[EDIT] Yes. The quoted article does not use ASP.NET. This article does.

like image 36
Vincent Ramdhanie Avatar answered Oct 17 '22 04:10

Vincent Ramdhanie


Request.UserLanguages in ASP.NET 4 parses this as a string array.

Good info: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html

like image 2
King Friday Avatar answered Oct 17 '22 06:10

King Friday


This is a great question, as localization in ASP.NET is overlooked by many developers.

ASP.NET should automatically pick up on the user's browser settings and force the CultureInfo.CurrentCulture to the user's browser language. You can force the issue with a line in Page_OnInit() like:

Thread.CurrentThread.CurrentCulture = new CultureInfo(HttpContext.Current.Request.UserLanguages[0]);

How can you test this? Enter the languages panel on our browser and change settings.

like image 2
Jeff Fritz Avatar answered Oct 17 '22 06:10

Jeff Fritz