生成动态日历控件
如何在 Asp.net 2.0 或更高版本中生成动态日历控件?
应满足以下要求
- 日历 不应该是 Asp.net 默认日历控件
- 日历不应该使用 CALENDAR 对象(即 dim calendar1 = new calendar() )
- 创建生成的应显示当前月份日期(2010 年 8 月 1 日 - 8 月 31 日),顶部应显示下个月和上个月,然后分别显示 2010 年 7 月和 2010 年 9 月。
请帮忙!
谢谢
How can i generate a dynamic calendar controls in Asp.net 2.0 or above?
Following requirements should be met
- Calendar Should NOT be an Asp.net default calendar control
- Calendar should NOT be created by using CALENDAR object (i.e. dim calendar1 = new calendar() )
- calendar Generated should display current month date (august 1 - august 31 2010) and top should display Next Month and Prev Month, which should then display July 2010 and September 2010 respectively.
Please help!
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因此,如果您使用的是 asp.net,但您不希望日历由 asp.net 驱动,那么您是说希望它 100% 客户端驱动?用 javascript 编写日历控件并不难,但如果您不想自己动手,请查看 jquery UI 库
http://jqueryui.com/
...它有一个 100% javascript 日历控件小部件。
So if you're using asp.net, but you don't want the calendar to be asp.net driven, then you're saying you want it to be 100% client side driven? It's not that hard to write a calendar control in javascript, but if you don't want to roll one yourself then check out the jquery UI library
http://jqueryui.com/
... which has a 100% javascript calendar control widget.