Anyone, please take a look at my line of code.
int totalValue = 0; totalValue = int.Parse(Label9.Text) * int.Parse(Label6.Text); Label8.Text = **totalVa
You should convert int to string. Something like this:
Label8.Text = totalValue.ToString();
Or this:
Label8.Text = totalValue + "";