German UI Culture de-DE decimal changing to comma value issue in asp.net

后端 未结 4 962
离开以前
离开以前 2021-01-06 04:15

I am using german UI Culture in my asp.net application. I am changing my application\'s UI culture based on the language selected in the dropdown, on dropdown selected inde

4条回答
  •  臣服心动
    2021-01-06 04:37

    Thread.CurrentUICulture is intended to be used for User Interface, it's the language used to display text, orientation and so on.
    Thread.CurrentCulture is intended to be used for parsing/formatting stuffs. Date and time, numbers and string comparison (for example).

    If you want to change only UI language (and to keep everything else with the culture of your web server) you have to modify only Thread.CurrentUICulture.

提交回复
热议问题