asp.net 中的日期时间日历

发布于 2024-12-08 04:59:51 字数 507 浏览 2 评论 0原文

日期时间显示为 07/10/2011 01:29:20 我只想显示 07/10/2011 01:29 我该怎么做。

     DateTime now = DateTime.Now.AddHours(12);
        txt_ExpiresBy.Text = Convert.ToString(now);

我有一个日期时间日历,我将其分配给一个文本框,我必须将此日历分配给 3 个文本框,我该怎么做。我应该使用三个不同名称的 Javascript 还是我可以使用下面的方法?

<script type="text/javascript">

        $(function () {
            $('.datePicker').datetimepicker();
        });
    </script>

<asp:TextBox ID="forDatePicker" runat="server" />

The date time displays as 07/10/2011 01:29:20 I want to display only 07/10/2011 01:29 how can I do that.

     DateTime now = DateTime.Now.AddHours(12);
        txt_ExpiresBy.Text = Convert.ToString(now);

And I have this datetime calendar which I assign it to a text box, I have to assign this calendar to 3 text box, How can I do it. Should I use three Javascript with different name or can I do with this below?

<script type="text/javascript">

        $(function () {
            $('.datePicker').datetimepicker();
        });
    </script>

<asp:TextBox ID="forDatePicker" runat="server" />

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

随波逐流 2024-12-15 04:59:51
txt_ExpiresBy.Text = expirestime.ToString(@"dd/MM/yyyy hh:mm");

Datetime.ToString() 方法非常灵活,或者您可以使用一种其他方法,例如 ToShortDateString()

有关更多详细信息,请参阅 MSDN 文档: http://msdn.microsoft.com /en-us/library/system.datetime.aspx


使用类名将 datetimepicker 分配给多个文本框应该可以正常工作。

txt_ExpiresBy.Text = expirestime.ToString(@"dd/MM/yyyy hh:mm");

The Datetime.ToString() method is pretty flexible or you can use one of the other methods such as ToShortDateString().

See the MSDN docs for more details: http://msdn.microsoft.com/en-us/library/system.datetime.aspx


Using the class name to assign the datetimepicker to multiple textboxes should work just fine.

她比我温柔 2024-12-15 04:59:51

使用 DateTime.ToString() 方法。

DateTime expirestime = expirestime.AddHours(12);
txt_ExpiresBy.Text = expirestime.ToString();

Use DateTime.ToString() method.

DateTime expirestime = expirestime.AddHours(12);
txt_ExpiresBy.Text = expirestime.ToString();
时光无声 2024-12-15 04:59:51

具有重载 ToString 方法

this.txt_ExpiresBy.Text = DateTime.Now.ToString("dd/mm/yyyy" + " " + "hh:mm");

问候

with overload ToString Method

this.txt_ExpiresBy.Text = DateTime.Now.ToString("dd/mm/yyyy" + " " + "hh:mm");

Regards

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