我看过这个:
并且正在努力将我的 DateTime[] 部署为视图中的下拉列表,特此附上我的行,但它不正确:
<p style="color:Red"><%: Html.DropDownList("Choose a Sunday: ", (IEnumerable<SelectListItem>)ViewData["Sundays"], "--Select--")%>
</p>
在控制器中我有:
[HttpGet]
public ActionResult MyAction()
{
DateTime[] allSundaysInMonth = GetDatesOfSundays(System.DateTime.Now);
ViewData["Sundays"] = allSundaysInMonth;
return View();
}
有人可以帮忙吗?谢谢