You are on page 1of 1

protected void txtdes_TextChanged(object sender, EventArgs e) { if (txtsubt12.Text != "0" && txtsubt12.Text != "0") { txtiva.Text = (((Convert.ToDouble(txtsubt12.Text) - Convert.ToDouble (txtdes.Text)) * Convert.ToDouble(lbliva.

Text)) / 100).ToString(); } else { if (txtsubt12.Text != "0") { txtiva.Text = (((Convert.ToDouble(txtsubt12.Text) - Convert.ToDo uble(txtdes.Text)) * Convert.ToDouble(lbliva.Text)) / 100).ToString(); } } txttotal.Text = (Convert.ToDouble(txtsubt0.Text) + Convert.ToDouble(txts ubt12.Text) - Convert.ToDouble(txtdes.Text) + Convert.ToDouble(txtiva.Text) ).To String(); }

You might also like