如何在未选择日期时知道选择了哪个月。
例如,在页面加载时,日历将显示12月。用户点击“>”按钮显示1月。
我怎么知道他选择了1月份?
TKZ
答案 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