I'm using the helper Html.DropDownList in an MVC 3 solution. I have it working to the point where I can select a menu item, post it to the controller, update the db, set my model's item selected to the actual item selected and return the model to the view:
<td colspan="3">
<%=Html.DropDownList("Id", Utilities.menuItems(), "-Select One-") %>
</td>
So, in this example, I populate the drop down with an external static method (Utilities.menuItems()) and set the default label to be 'Select One'.
On the second pass, how do I set the drop down to defualt to the value I selected?