Click here to Skip to main content
15,895,084 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i design application using c sharp.

in that i have threecolumn as follows.

Rental cost ,Diesel service, Service Tax.


Rental Cost 231270

Diesel ser 19767

Ser Tax 30124(231270 + 19767 * 12/100).

Code as follows;

double o = Convert.ToDouble(txt_rentalcost.Text);
double p = Convert.ToDouble(txt_dieselservice.Text);
txt_servicetax.Text = Math.Round((o + p) * 0.12).ToString();


i am doing service tax calculation at that time service tax is 12 percentage.suppose in next year service tax percentage is 12.36 how to do that calculation.please help me.i send mu code also please help me.

Rgds,
Narasiman P
Posted

1 solution

I would put service tax value in app.config (if windows application) or web.config(if asp.net application).
Then read this value in the code prior to calculation as below

C#
if(ConfigurationManager.AppSettings.Get("ServiceTax") != null)
{
  double serviceTax = Convert.ToDouble(ConfigurationManager.AppSettings.Get("ServiceTax"));
 txt_servicetax.Text = Math.Round((o + p) * serviceTax).ToString();

}


Hope that helps.

Milind
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900