pro_vb_dotnet thread: Money: Currency Format
instead of:
Price.Text = String.Format("{0:c}", Products.Price)
try using something more custom:
Price.Text = Format(CDec(Products.Price), "$###,##0.00")
that way, your not relying on the computer format
|





