In .net VB have a multi-lingual and multi-currency price listing that comes from two sources. For prices coming from our SQL server where prices are held as a Money datatype, all is well if we change languages. i.e. US$599.00 in English is displayed as US$599,00 in Italian.
Currency and price are separate fields, btw.
However, when the data source is from our partners web service when the data is a string, then US$599.00 is still correct in English but when in Italian, Spanish or German it is US$599.00,00. I can't work out what's going wrong with it. Not all prices are full units so I can't just parse an integer.
Any advice would be appreciated.