mind controll

mind controll

  • NA
  • 131
  • 59.6k

c# calculate percent of textbox value

Oct 16 2015 6:36 PM
I have 2 textboxes
 
textbox1, textbox2
 
I want to calculate 15% of the number user entered in textbox1 and show it in textbox2
 
I tried this :
 

 

if (!string.IsNullOrEmpty(textBox3.Text))

textBox7.Text = (int.Parse(textBox3.Text) *100 / "15%).ToString();

 

 

Answers (2)