I have a drop down menu that when the user selects from it brings up a panel that will have two buttons, an arrow up and an arrow down. This is so the user can record against the option chosen how many times it has been done. I need code that will only display the down arrow if the number of times recorded for that option is 1 or more. Im thinking it should be an if statement such as:
if(lblRecords.Text == "None")
{
Decrement.Visible = false;
}
else
{
Decrement.Visible = true;
}
However the code isn't working properly. Any ideas how to fix this.