Pages

Subscribe:

Ads 468x60px

Saturday, October 13, 2012

Format String into Money Format in asp.net using c#

In this programming Tutorial we will learn that how we can format amount string into money. below is the code just copy and paste and use it.

string charges = "125.35";
lbl_charges_total.Text  = string.Format("{0:###,###,##0.00}", charges);

No comments:

Post a Comment