Beispiel #1
0
    protected void btnMultiply_Click(object sender, EventArgs e)
    {
        string a = txtOperand1.Text;
        string b = txtOperand2.Text;

        txtResult.Text   = c.Multiply(a, b);
        txtOperand1.Text = "";
        txtOperand2.Text = "";
    }