asp.net 中的日期时间日历
日期时间显示为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Datetime.ToString() 方法非常灵活,或者您可以使用一种其他方法,例如
ToShortDateString()
。有关更多详细信息,请参阅 MSDN 文档: http://msdn.microsoft.com /en-us/library/system.datetime.aspx
使用类名将
datetimepicker
分配给多个文本框应该可以正常工作。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.使用 DateTime.ToString() 方法。
Use DateTime.ToString() method.
具有重载 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