如何将选定的日期从 jQuery 日历保存到数据库
我的目标是将日历中选择的日期列表存储到数据库中。对于 ASP.NET,大多数现有日历控件的问题是我无法获取启用多选时未选择的日期。我可以获得一份清单,但仅此而已。因此我决定不使用这些。
如果我想使用下面的 jQuery 日历创建自己的活动,我该如何做呢?该事件将捕获单击的日期(如果未选择或选择的话)等。我将使用它来添加/删除集合中的日期。除了删除部分之外,它几乎与其他日历的工作方式相似。删除的日期将在它自己的列表中,因此我知道单击“保存”后要从数据库中删除哪些日期。我希望这是足够的信息。
http://www.eyecon.ro/datepicker/#about
使用 Visual Studio 2005/。 NET 2.0。时间:2019-03-17 标签:c#
My goal here is to store a list of dates selected in a calandar to a database. The problem with most calendar controls that exist, for asp.net, is I can't get the date that was unselected with multiselect enabled. I can get a list but that is really it. I have decided not to use these because of this.
If I wanted to create my own event using the jQuery calendar below how would I go about doing this? The event would capture the day clicked, if it was unselected or selected, etc. I would use this to add/remove the dates from a collection. It is almost like how the other calendars work except for the remove part. The dates removed would be in it's own list so I know what dates to remove from the database once 'save' is clicked. I hope this is enough information.
http://www.eyecon.ro/datepicker/#about
Using Visual Studio 2005/.NET 2.0. c#
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想保存多个日期(列表),您可以:
-使用jquery创建1个输入框用于选择日期和另一个列表区域选择日期
- 在回发时,让服务器代码检查所有选定日期的列表区域,
如果您只想保存一个日期,您可以:
-使用jquery创建1个输入框用于选择日期
- 在回发时,服务器代码检查输入框
希望有帮助。
if you wanted to save multiple dates (list), you could:
-use jquery to create 1 input box for selecting date and another list area the selected dates
-on post back, have the server code check the list area for all the selected dates
if you wanted to save only one date, you could:
-use jquery to create 1 input box for selecting date
-on post back, the server code check for the that input box
hope that helps.