I need to get the User's CurrentCulture Currency GroupSeparator and DecimalSeparator value in a external JS file like below, but below lines of code is not getting the expected result. It is not fetching values instead remains the string as it is.
var thousands = '<%= System.Globalization.CultureInfo.CurrentCulture.NumberFormat.NumberGroupSeparator %>';
var decimal = '<%= System.Globalization.CultureInfo.CurrentCulture.NumberFormat.NumberDecimalSeparator %>';
In my application i need to apply currency formater for different users Culture.
Please help me.