asp.net - I want to calculate the salary of Employee -
double basicsalary = double.parse(txtbasicsalary.text); double salary = convert.todouble (txtsalary.text); double sa = basicsalary * 0.11; double = basicsalary * 0.005; double saso = sa + so; txttotalsalary.text = (convert.todouble (saso)).tostring(); it doesn't works me what's solution issues
i think there mistake parentheses
txttotalsalary.text = (convert.todouble(saso).tostring());
Comments
Post a Comment