为什么我的textBox传递一个空字符串

时间:2014-02-24 05:02:16

标签: c# asp.net code-behind

我正在为我的作业创建一个代码隐藏文件的代码,该代码涉及创建一个简单的计算器。我遇到了问题,我把它缩小到textBox的字符串。当用户单击计算器上的相等按钮时,我尝试将textBox.Text设置为自身,计算器textBox变为空白。这是我的代码隐藏文件的代码,不介意其中的其他代码,因为我最初只是想看看循环的哪些部分正在运行。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Text.RegularExpressions;

public partial class Assign2_Calc : System.Web.UI.Page
{
protected void ButtonEqual_Click(object sender, EventArgs e)
{
    string inputStr = inputBox.Text;
    double value1 = 0;
    double value2 = 0;
    double result = 0;
    Calculator myCalculator = new Calculator();
    string operandsVal;
    string[] operands = Regex.Split(inputStr, @"(\+)(\-)(\/)(\*)");
    for (int i = 0; i < operands.Length; i ++)
    {
        if(i == 0 || i==4 || i==8 || i==12 || i==16 || i==20)
        {
          operandsVal = operands[i];
          //numMeh = Convert.ToInt32(operandsVal);
          value1 = 1;
          result = operands.Length;

        }
        else if (i == 2)
        {
            value2 = 2;
            result = 2;

        }
        else
        {
            switch (operands[i])
            {
                case "+":
                    result = myCalculator.Add(value1, value2);
                    break;
            }
        }
    }

    inputBox.Text = inputStr; //result.ToString();
}
}

0 个答案:

没有答案