Possible Duplicate:
.NET String.Format() to add commas in thousands place for a number
I have an int
that is passed through to the a view and it need to formatting so it is not one big block of number. e.g
0
00
000
000,0
000,000
000,000,000
How can i do this using a for loop?
thanks