及时保存数据 ASP.NET (Visual Basic)?
我正在开发一个提供在线预订服务的网络应用程序,我需要保存数据(例如在特定日期并访问它们)。
我该怎么办呢。
是否可以使用:System.Web.UI.WebControls.Calendar
I'm developing a web application that provide a service of online reservation, and I need to save the data (for example in a specific day and access to them).
How can I do that.
Is it possible using : System.Web.UI.WebControls.Calendar
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将需要使用 Ajax 工具包中的 Calendar Extender 控件。
示例: http://www.asp.net/ajax/ajaxcontroltoolkit/ Samples/Calendar/Calendar.aspx
如何安装 AJAX 工具包:http://www.asp.net/ajax/tutorials/get-started-with-the-ajax-control-toolkit-cs
有关如何设置日历的视频扩展程序控件: http:// /www.asp.net/ajax/videos/how-do-i-configure-the-aspnet-ajax-calendar-control
基本上,您有一个文本框。当用户单击文本框时,他们会看到一个漂亮的小 JavaScript 弹出窗口,可以轻松选择日期。最终结果是保存在文本框中的字符串。
您可以通过以下方式将其转换为日期时间: MyDateTime = datetime.parse(MyTextBox.text)
You will want to use the Calendar Extender control in the Ajax toolkit.
Sample: http://www.asp.net/ajax/ajaxcontroltoolkit/Samples/Calendar/Calendar.aspx
How to install the AJAX toolkit: http://www.asp.net/ajax/tutorials/get-started-with-the-ajax-control-toolkit-cs
Video on how to setup the calendar extender control: http://www.asp.net/ajax/videos/how-do-i-configure-the-aspnet-ajax-calendar-control
Basically, You have a textbox. When the user clicks on the textbox, they get a nice little javascript popup that allows easy selection of a date. The end result is a string that gets saved in the textbox.
You can convert this to a datetime by: MyDateTime = datetime.parse(MyTextBox.text)