我正在使用Intranet網站,特別是針對員工的每週監控工具。我需要的是填補了DropDownList
與周,每週例如:包含星期的DropDownList
Week : From 12/10/15 to 18/10/15
我能夠到另一個頁面上,但與年和月進行過濾:
CalendarController c = new CalendarController();
ViewBag.ListYears = c.ListYears(iyear);
ViewBag.ListMonths = c.ListMonths(imonth);
ViewBag.ListDaysOfMonth = _service.ListDaysOfMonth(iyear.ToString(), imonth.ToString());
而且使用的形式進行保存。
如何在我的DDList中填入2015年所有星期的列表?