I have a question in my MVC application which requires a dropdown list and I want to add a "Please select" option to the dropdown to hide the answers until it is clicked.
@Html.DropDownListFor(model => model.QuestionTwo, new SelectList
(new[]{"A","B", "C", "D"}))
@Html.ValidationMessageFor(model => model.QuestionTwo)
Because of the way I have created my list of answers, I'm not sure how to add a default "Please Select" value that cannot be selected by the user.