Formating the string before displaying in ASP.NET
In Some cases while displaying a large number it will be nice if we can format the number to a more readable format Like : Reputation Point : 537456 Can be more readable if we can write it as Reputation Point : 537,456 ASP.NET provide features like String.Format(format,arg0) to format arguments into different forms. For…
read more