gpt4 book ai didi

c# - 当我使用 .ToShortTimeString().... 只能使用模板?

转载 作者:行者123 更新时间:2023-11-30 15:33:06 25 4
gpt4 key购买 nike

@Html.TextBoxFor(x => x.ActiveDevice.LastUseDate, new { @readonly = "readonly" })

将我的日期文本框显示为只读,这很好,但它同时显示日期和时间。我只想要日期,所以 iv 使用 .ToShortTimeString() :

 @Html.TextBoxFor(x => x.ActiveDevice.LastUseDate.ToShortTimeString(), new { @readonly = "readonly" })

我得到了错误:

Templates can be used only with field access, property access, single-dimension array index, or single-parameter custom indexer expressions.

有人知道怎么解决吗?谢谢

最佳答案

您可以使用 HtmlAttributes 插入格式化日期:

@Html.TextBoxFor(x => x.ActiveDevice.LastUseDate, new { @readonly = "readonly", @Value = Model.ActiveDevice.LastUseDate.ToShortTimeString() })

关于c# - 当我使用 .ToShortTimeString().... 只能使用模板?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17946114/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com