简体   繁体   中英

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.

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"  
        >  

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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