retrieve regional settings

  • Thread starter Thread starter Mario Krsnic
  • Start date Start date
M

Mario Krsnic

Hello,
I would like to retrieve the regional settings of the page visitors. If I
use CultureInfo.CurrentCulture.ToString then
I get the regional settings of the server. If I use Request.UserLanguages(0)
then I get
the operation system language. If somebody uses the English operation
system with Croatian regional setting then I get with
Request.UserLanguages(0) allways "EN".
Is there any solution for the issue?
Thanks for every tip!
Mario
 
Hello,
I would like to retrieve the regional settings of the page visitors. If I
use CultureInfo.CurrentCulture.ToString then
I get the regional settings of the server. If I use Request.UserLanguages(0)
then I get
the operation system language. If  somebody uses the English operation
system with Croatian regional setting then I get with
Request.UserLanguages(0) allways "EN".
Is there any solution for the issue?
Thanks for every tip!
Mario

Request.UserLanguages returns selection of preferred languages from
the browser and not from the operating system. Go to IE - Tools -
Internet options - Languages to see that selection .
 
Hello,
I would like to retrieve the regional settings of the page visitors. If I
use CultureInfo.CurrentCulture.ToString then
I get the regional settings of the server. If I use Request.UserLanguages(0)
then I get
the operation system language. If  somebody uses the English operation
system with Croatian regional setting then I get with
Request.UserLanguages(0) allways "EN".
Is there any solution for the issue?
Thanks for every tip!
Mario

Request.UserLanguages returns selection of preferred languages from
the browser and not from the operating system. Go to IE - Tools -
Internet options - Languages to see that selection .
 
Back
Top