本文介绍了在3个文本框中输入值,并在第4个显示计算结果的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,



我最近建立了一个网站,根据各种条件计算您的房屋预算。对于演示,我制作了4个方框,第1个用于工资,相应的第2个和第3个用于支出。

如何输入第1个,第2个第3个文本框的值并显示第1个的减去值 - (第二个+第三个文本框)进入第四个?

Hello everyone,

I recently made a website which calculates your home budget on the basis of various conditions. For the demo I made 4 boxes, 1st for salary and corresponding 2nd and 3rd for expenditures.
How can I input the values of 1st, 2nd n 3rd text boxes and display the subtracted value of 1st - (2nd + 3rd text box) into the fourth one?

推荐答案

protected void Button1_Click(object sender, EventArgs e)
{
    double value1, value2, value3, value4;
    value1 = Convert.ToDouble(TextBox2.Text);
    value2 = Convert.ToDouble(TextBox3.Text);
    value3 = Convert.ToDouble(TextBox4.Text);
    value4=value1-(value2+value3);
    TextBox5.Text = value4.ToString();
}


这篇关于在3个文本框中输入值,并在第4个显示计算结果的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 01:32