hi. we have many product in website and show those price with repeater. how could separate the price with 3 numbers? 1200000 = 1.200.000 thanks.
Are you using ascx tranformations ? Take a look at the C# string Format
String.Format("{0:c}", 10) will return $10.00
I'm sure you will find what you need.
Please, sign in to be able to submit a new answer.