Hello
I'm using mvc and I'm trying to loop through a array of checkboxes, but how do I exclude the ones that are "false" in that list?
for(int i = 0; i < TimeRange1.Length; i++)
{
if(TimeRange1[i] == "false" ....??)
// dostuff
}
or is there some better way of doing it?
/M