目前在asp.net日历控件中选择了一个月

时间:2010-12-07 09:04:20

标签: c# asp.net

如何在未选择日期时知道选择了哪个月。

例如,在页面加载时,日历将显示12月。用户点击“>”按钮显示1月。

我怎么知道他选择了1月份?

TKZ

1 个答案:

答案 0 :(得分:3)

您可以使用VisibleMonthChanged事件来识别该内容。

protected void Cal1_VisibleMonthChanged(object sender, MonthChangedEventArgs e)
{
    //e.NewDate.Month will have the new visible month
}

要获取月份名称,请查看这些网页。

Best way to turn an integer into a month name in c#?

http://www.norecursion.com/blog/archive/2010/05/21/how-to-get-month-name-from-integer.aspx