I am creating an ASP.Net MVC 4 site where I have a controller with a create action.
The Create action provides a View with several dropdowns each of which I want to bind to a single list of entities from my database.
However, I want to ensure that the selections in each drop down are unique.
How would I go about doing this? Do I need to do some sort of AJAX postback to the server each time a selection is made to somehow update the available options on each of the other drop downs? Or is there a simpler way?
Thanks very much,
Martyn Jones.