|
-
February 6th, 2003, 08:25 AM
#1
Number formatting
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
-
February 6th, 2003, 10:09 AM
#2
Dim d As Double
d = 3539883.99
MsgBox(d.ToString("C"))
-
February 8th, 2003, 08:40 AM
#3
splendid!!! Thanks a lot.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|