protected void btnEnter_Click(object sender, EventArgs e) { if (txtBox.Text.Length >= 1) { string result = _Calculate.Calculate_Result(txtBox.Text); txtBox.Text = result; } }