Html.DropDownList selected value not working using ViewBag
Well, after a couple hours reading stuff over here, trying unsuccessfully all the solutions, also found this article that i thought it would save my life... nothing. Long story short. Here is my View (all combinations) @Html.DropDownList("yearDropDown",(IEnumerable<SelectListItem>)ViewBag.yearDropDown) @Html.DropDownList("yearDropDownxxx",(IEnumerable<SelectListItem>)ViewBag.yearDropDown) @Html.DropDownList("yearDropDown",(<SelectList>)ViewBag.yearDropDown) @Html.DropDownList("yearDropDown") Here is my Controller public ActionResult(int year) { var years = new int[] { 2007, 2008, 2009, 2010,