使 ASP.NET 日历控件跳过年份
默认情况下,标准 Asp.NET 日历控件似乎只能按月滚动(使用控件上的后退和前进链接按钮)。
有没有办法自定义此控件以添加分页链接,该链接将在任一方向上跳过一年?
我正在使用 .NET 3.5 版(如果有帮助的话)。
By default, it seems that the standard Asp.NET calendar control can only scroll on a month-by-month basis (using the back and forward link buttons on the control).
Is there a way to customise this control to add paging links which will skip by a year in either direction?
I'm using .NET version 3.5 if that's any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您愿意使用 ASP.NET AJAX 日历,它允许单击日历标题来“缩小”以选择一个月或一年,并且您可以按年或十年(分别)进行导航。
在这里查看演示:
http://www.asp.net/ajax/ajaxcontroltoolkit/samples/calendar /日历.aspx
If you're willing to use the ASP.NET AJAX calendar, it allows clicking the title of the calendar to "zoom out" to selecting a month or a year, and you can navigate by year or decade (respectively).
See a demo here:
http://www.asp.net/ajax/ajaxcontroltoolkit/samples/calendar/calendar.aspx
这就是您要查找的内容:
http://jqueryui.com/demos/datepicker/ #dropdown-month-year
祝你好运!
This is what you are looking for:
http://jqueryui.com/demos/datepicker/#dropdown-month-year
Good luck!