views:

156

answers:

1

I'm currently playing with an issue in the format of currency values across an ASP.NET application.
I've set up my webconfig to detect automatically the client culture and I manage as it's desired from the app. I have to show the values formatted depending on his regional config.

My question is if the Regional Configuration within control panel affects the IE language configuration (Tools>Options>Language).

Thanks

+1  A: 

Regional settings under contorl panel only affects the client PC. The lanuages IE send to server with each HTTP request are defined under Tools>Options>Language. Upon what received with each HHTP request, the server decided how to treat it. You might get confusing results if you are using the same PC for server and client.

Khalil Dahab