c# - Chrome shows comma instead of decimal point -


i have web application (company internal) shows form fields decimal numbers. i've started doing javascript data. noticed chrome shows me decimal numbers separated commas instead of decimal point. internet explorer example shows fine. when take @ c# code can see, numbers decimals , separated decimal point. seems code fine. have in html rendering (language settings ever) or chrome (i didn't check other browsers chrome , ie).

i've never seen before should search mistake? (i can't show code. thing can tell ie dev console shows 93.54 while chrome dev console shows 93,54. both values of same textbox).

by default asp.net renders html culture info come browser. setting thread culture or overriding page method can render static culture info.

protected override void initializeculture() {     this.culture = "en-us";     this.uiculture = "en-us";     base.initializeculture(); } 

Comments

Popular posts from this blog

java - Play! framework 2.0: How to display multiple image? -

gmail - Is there any documentation for read-only access to the Google Contacts API? -

php - Controller/JToolBar not working in Joomla 2.5 -