如何在C#.net中选择月份的最后一个日期?

时间:2011-01-20 07:54:28

标签: c# asp.net

我正在使用下拉列表在.aspx页面中选择月份。我必须在.aspx.cs页面中获取所选月份的最后日期。 (有些月份有30天,有些月份有31天)

我该怎么做?

1 个答案:

答案 0 :(得分:24)

无需自定义计算。

使用System.DateTime.DaysInMonth(yearNum, monthNum)方法查找任何给定月份(也是最后一天)的天数。

这很简单:

//Get days in month 2 (Feb) of year 2011. Returns 28.
int daysInFeb2011 = System.DateTime.DaysInMonth(2011, 2); 

MSDN文档提供了更全面和描述性的示例:

        const int July = 7;
        const int Feb = 2;

        // daysInJuly gets 31.
        int daysInJuly = System.DateTime.DaysInMonth(2001, July);

        // daysInFeb gets 28 because the year 1998 was not a leap year.
        int daysInFeb = System.DateTime.DaysInMonth(1998, Feb);

        // daysInFebLeap gets 29 because the year 1996 was a leap year.
        int daysInFebLeap = System.DateTime.DaysInMonth(1996, Feb);