简体   繁体   English

日历控件下个月显示

[英]Calendar control to display next month

Added a Standard Calendar control, and now i need to click on the arrow so it shows the next month. 添加了标准Calendar控件,现在我需要单击箭头,以便显示下个月。

How can i implement this ? 我该如何执行呢?

For now, when i click on the arrow to display the next month it doesn't change. 现在,当我单击箭头以显示下个月时,它没有改变。 How can i implement this ? 我该如何实施呢?

Try this... 尝试这个...

<asp:Calendar  
        ID="Calendar1"   
        runat="server"  
        NextPrevFormat="FullMonth"  
        SelectionMode="DayWeekMonth"  
        SelectMonthText="Month"  
        SelectWeekText="Week"  
        ForeColor="WhiteSmoke"  
        DayNameFormat="Full"  
        Font-Names="Book Antiqua"  
        Font-Size="Medium"  
        OnSelectionChanged="Calendar1_SelectionChanged"  
        >  

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM