my code is
it retrun 135 and i want 135.00 how to ?
thank for advance
C#:
double Fee = Convert.ToDouble(dv3[0].Row[9].ToString());
lblFeeRate.Text = Fee.ToString();
double Rate = Convert.ToDouble(dv3[0].Row[10].ToString());
lblItem.Text = Rate.ToString();
double TRate = Convert.ToDouble(Fee*Rate);
it retrun 135 and i want 135.00 how to ?
thank for advance
Last edited: