Last post Feb 27, 2009 05:12 AM by venziar
Member
47 Points
86 Posts
Feb 27, 2009 03:47 AM|aco_mk|LINK
Hi,
Lets say that I use resources files to enable multilanguage suport. And i have some labels, text boxes etc that i fill with text from my .cs page.
My question is how can i check browser selected language in order to display different messages?
Example:
if (browser.language == "UK-uk") { label.Text = "Somthing on english" } else { label.Text = "Something on the default app language"; }
Thanks
603 Points
160 Posts
Feb 27, 2009 05:09 AM|ashrafur|LINK
<script language="javascript"> function isFireFox() { return navigator.appName == "Netscape"; } function whichLanguage() { if (isFireFox()) { alert(navigator.language); } else { alert(navigator.browserLanguage); } } </script>
Participant
1140 Points
400 Posts
Feb 27, 2009 05:12 AM|venziar|LINK
HI 1)http://www.codeproject.com/KB/aspnet/ChangeCultures.aspx 2)http://aspalliance.com/821 Thanks Venky
Member
47 Points
86 Posts
How to check the default browser language from the code
Feb 27, 2009 03:47 AM|aco_mk|LINK
Hi,
Lets say that I use resources files to enable multilanguage suport. And i have some labels, text boxes etc that i fill with text from my .cs page.
My question is how can i check browser selected language in order to display different messages?
Example:
if (browser.language == "UK-uk")
{
label.Text = "Somthing on english"
}
else
{
label.Text = "Something on the default app language";
}
Thanks
Member
603 Points
160 Posts
Re: How to check the default browser language from the code
Feb 27, 2009 05:09 AM|ashrafur|LINK
<script language="javascript">
function isFireFox() {
return navigator.appName == "Netscape";
}
function whichLanguage()
{
if (isFireFox()) {
alert(navigator.language);
}
else {
alert(navigator.browserLanguage);
}
}
</script>
http://www.ashrafur.com
Participant
1140 Points
400 Posts
Re: How to check the default browser language from the code
Feb 27, 2009 05:12 AM|venziar|LINK
HI 1)http://www.codeproject.com/KB/aspnet/ChangeCultures.aspx 2)http://aspalliance.com/821 Thanks Venky