refactoring my MVC page to have a better design, so here it goes.
MODEL:
public class MyModel
{
public IEnumerable<SelectListItem> SpeciesDropDown {get; set;}
}
Controller
[HttpGet]
public ActionResult Index()
{
MyModel model = new MyModel()
{
SpeciesDropDown = StaticClass.GetSpeciesSelectList()
}
Where GetSpeciesSelectList returns a list of values (and I know it works because it worked with viewdata. Now the view, which works, but has a bug
@model MyModel
Species: @Html.DropDownList("SpeciesDropDown",
new SelectList(ViewData.Model.SpeciesDropDown))
which spits back a dropdownlist of a bunch of System.Web.Mvc.SelectListItem. Any suggestions? Thanks
