akhter says:
string
a = Convert.ToString(obtain.Text);
if
( a >=
"90"
)
The greater and the less operator should apply when you compare numbers.
You can not apply arithmetic operators to strings.
Convert the string number to integer value before compare.
int a = Convert.ToInt32(obtain.Text);
if ( a >= 90 )
{
status.SelectedValue = "2";
}