On my MVC form, I need to bind a drop down box to an enumeration on my ViewModel. The best way I found to do that is described here.It appeared to work at first, but now that I've added validation to my form, I've discovered it does not bind back to the ViewModel.Here's my razor code:\[code\]<div class="editor-field"> @Html.DropDownListFor(model => model.response, new SelectList(Enum.GetValues(typeof(Vouchers.Models.ResponseType))), "Please Select")</div>\[/code\]And here's my view model definition for the field:\[code\][DisplayName("Response")][Required(ErrorMessage="You must select a response before submitting this form.")][Range(1, int.MaxValue, ErrorMessage = "You must select a response before submitting this form.")]public ResponseType response { get; set; }\[/code\]The problem is that I cannot submit the form; even after selecting a response from my drop down, the Validation error message for the Range attribute is displayed and the client side validation prevents the form from submitting.I believe this is because the SelectList for the drop down contains only the string names of the enum, not the underlying integer value.How can I solve this problem?