G
Guest
I followed instructions in MSDN help articles and wrotethe folowing code in
order to display numeric numbers with Euro symbol as follows :
----------------------------
Dim OutString As [String] = ""
Dim frCulture As New CultureInfo("fr-FR", False)
Thread.CurrentThread.CurrentCulture = frCulture
Dim myCurrency As New [Decimal](123456)
myCurrency.ToString("C", LocalFormat)
OutString = "Euro : " + myCurrency.ToString("C",
NumberFormatInfo.CurrentInfo)
-----------------------------
Instead of getting
Euro : 123.456,00 €
The page is displaying
Euro : 123.456,00 ?
Am I missing a parameter somewhere?
Thanks
order to display numeric numbers with Euro symbol as follows :
----------------------------
Dim OutString As [String] = ""
Dim frCulture As New CultureInfo("fr-FR", False)
Thread.CurrentThread.CurrentCulture = frCulture
Dim myCurrency As New [Decimal](123456)
myCurrency.ToString("C", LocalFormat)
OutString = "Euro : " + myCurrency.ToString("C",
NumberFormatInfo.CurrentInfo)
-----------------------------
Instead of getting
Euro : 123.456,00 €
The page is displaying
Euro : 123.456,00 ?
Am I missing a parameter somewhere?
Thanks