如何禁用数据类型smalldatetime中的时间显示

发布于 2024-11-18 01:07:35 字数 444 浏览 2 评论 0原文

我有一个文本框,应插入 dd/MM/yyyy 格式的日期。只有我能找到和使用的是smalldatetime 或datetime。我选择了smalldatetime,显示的数据例如是01/07/2011 12:00:00 AM。是否涉及任何代码来将其排序为仅显示 01/07/2011(没有时间)?

SqlJobMaster.InsertParameters["StartDate"].DefaultValue = txtStartDate.Text.ToString();

网络平台

开始日期

I have a textbox that should inserting a date in dd/MM/yyyy format. What only I can find and use is smalldatetime or datetime. I pick smalldatetime and the data displayed was like for example 01/07/2011 12:00:00 AM. Any codes involved to sort this out to be only displaying 01/07/2011 (without time)?

SqlJobMaster.InsertParameters["StartDate"].DefaultValue = txtStartDate.Text.ToString();

ASP.NET

Start Date

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

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

发布评论

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

评论(4

苦妄 2024-11-25 01:07:35

使用 ToString("dd/MM/yyyy");。然后它将按照您想要的方式格式化。

use ToString("dd/MM/yyyy");. Then it will get formatted the way you want it to.

_畞蕅 2024-11-25 01:07:35

我没有在 ASP.NET 中使用 GridView,但根据 这篇文章您基本上需要设置DataFormatString 相关 BoundField 属性,例如 "{0:dd/MM/yyyy}"。不过,如果您的应用要在多种文化中使用,您应该考虑文化差异:"{0:d}" 是通用的“当前文化的短日期模式”格式字符串。

I haven't used GridView in ASP.NET, but according to this article you basically need to set the DataFormatString property for the relevant BoundField, e.g. to "{0:dd/MM/yyyy}". You should consider cultural variations though, if your app is to be used in multiple cultures: "{0:d}" is the general "short date pattern for the current culture" format string.

灼痛 2024-11-25 01:07:35

像这样的东西:

String.Format("{0:MM/dd/yyyy}", dt);            

something like this:

String.Format("{0:MM/dd/yyyy}", dt);            
伪装你 2024-11-25 01:07:35

您可以尝试:

DateTime dt = DateTime.Parse(txtDate.Text);
SqlJobMaster.InsertParameters["StartDate"].DefaultValue = dt.ToShortDateString();

You can try :

DateTime dt = DateTime.Parse(txtDate.Text);
SqlJobMaster.InsertParameters["StartDate"].DefaultValue = dt.ToShortDateString();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文