I have problem With My Calculator in ASP.NET C# in Microsoft Visual Web Developer 2008 Express Edition : web application not windows application
the code:
protected void Button2_Click(object sender, EventArgs e)
{
//Double F1;
//Double S1;
// Double Re;
// F1 = Convert.ToDouble(TextBox1.Text);
// S1 = Convert.ToDouble(TextBox2.Text);
// Re = F1 - S1;
// Label1.Text = Convert.ToString(Re);
}
how to make it works with one text box ?
it means one box take the first number then operation -+*/ then the second number , final the result after i click the = button
thnx