Click to See Complete Forum and Search --> : Number formatting


santoshmahale
February 6th, 2003, 07:25 AM
Hi,

I have a ASP.NET project displaying some data tabular format. I want to display the currency figures with thousand separator (100,123). Is there some simple method to achieve this? like some class in the style sheet or something similar.

Thanks a lot

Santosh N. Mahale

DSJ
February 6th, 2003, 09:09 AM
Dim d As Double
d = 3539883.99
MsgBox(d.ToString("C"))

santoshmahale
February 8th, 2003, 07:40 AM
splendid!!! Thanks a lot.