I got this line of code:
<%=Html.DropDownList("Status",(SelectListItem[])ViewData["statusList"], new {@style = "width: 190px"})%>
The dropdown is always populated with the data from ViewData which is good but i want to be selected the value corresponding to the Model.Status property. What am i doing wrong?