hi there,
can some one explain what is happening the below code:
if (amt == "0.0000")
txtPAmt.Text = "";
else
{
decimal d;
decimal.TryParse(amt, out d);
txtPAmt.Text = d.ToString("$0000000000.00");
}
thankxxx