及时保存数据 ASP.NET (Visual Basic)?

发布于 2024-09-03 14:55:41 字数 131 浏览 3 评论 0原文

我正在开发一个提供在线预订服务的网络应用程序,我需要保存数据(例如在特定日期并访问它们)。

我该怎么办呢。

是否可以使用: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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅唱々樱花落 2024-09-10 14:55:41

您将需要使用 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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文