AspxGridView:如何将日期列值转换为 Date.ToShortDateString()?

发布于 2024-11-05 06:37:19 字数 245 浏览 1 评论 0原文

我正在使用 ASPxGridView 的编辑控件。到目前为止一切都很好,但我只有一个问题。从普通的 DatePicker 中,我可以通过 ASPxDateEdit.Date.ToShortDateString() 发送没有时间的日期值。

但是当我想对 ASPxGrid 中的列执行此操作时,e.NewValues["dateColumn"].ToShortDateString() 不起作用。点后面只有ToString。

我怎样才能做到这一点?

I'm using an editing control for ASPxGridView. It all works fine so far, but I have only one problem. From normal DatePicker, I can send the date value without time by ASPxDateEdit.Date.ToShortDateString().

But When I want to do it with the column in my ASPxGrid, the e.NewValues["dateColumn"].ToShortDateString() doesn't work. There is only ToString after dot.

How can I make that happen?

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

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

发布评论

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

评论(1

一袭白衣梦中忆 2024-11-12 06:37:19

由于未键入 e.NewValues["dateColumn"],因此它不知道该值实际上是 DateTime,因此 ToShortDateString 不是可用的。

您可以将其转换为 DateTime,然后该选项将可供您使用

((DateTime)e.NewValues["dateColumn"]).ToShortDateString();

Since e.NewValues["dateColumn"] isn't typed, it's unaware that the value is actually a DateTime, so ToShortDateString isn't available.

You can cast it to DateTime, and then the option will be available for you

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