I am checking for values in a textbox to trigger a conditional statement, but am getting error messages.
if (txtAge.Text = "49") || (txtAge.Text = "59")
{
txtNote.Text = "A valid picture ID must be submitted";
}
The error message I am getting is Cannot implicitly convert type ‘string’ to ‘bool’
How can I resolve this?
When you type this:
This basically is assigning “49” to
txtAge.Text, and then returning that value as a string (equal to “49”).This is the same, essentially, as doing:
However, you cannot do “if (stringExpression)”, since an if statement only works on a boolean. You most likely wanted to type: