Controller Code:
List Months = new List();
Months.Add("Jan"); Months.Add("Feb"); ViewData["Months"] = new SelectList(Months);
View Code:
${Html.DropDownList((SelectList)ViewData["Months"])}
Error: Argument 2: cannot convert from 'System.Web.Mvc.SelectList' to 'string'