1
Answer

bind decimal value on label from database c#

 
bind price on label
 
lblPrice.Text = Convert.ToString(ds.Tables[0].Rows[0]["dollar"]);
 
but it show $ 1.08000000000000000000 USD
 
and i want to show only $ 1.08 USD 
 
 
Answers (1)