@Html.DropDownListFor(model => model.ZipFile, new SelectList(ViewBag.ZipFiles))
The above code creates me a select list just fine. But I want to
In the controller, when you set ViewBag.ZipFiles, add a SelectListItem to that collection.