Saturday, 18 June 2016

html - How do I preselect in a drop down list box?

I am trying to preselect like this:





But I get a message in VS2010 saying "Validation HTML5: The value permitted for this attribute do not include 'yes'.



Am I doing something wrong. I thought the way to preselect was as above.

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...