html.textbox 日期时间格式

发布于 2024-10-30 20:56:36 字数 204 浏览 2 评论 0原文

是否可以在页面级别(而不是视图模型)设置文本框的格式,以便日期时间可以排除时间戳?

我无法编辑此项目中的视图模型。所以我必须将包含日期时间属性的视图模型传递给视图。

<%=Html.TextBox("DateOfBirth", Model.DateOfBirth)%><br />

谢谢

is it possible to format a text box at page level (not viewmodel) so a datetime can exclude the time stamp?

i cant edit the viewmodel in this project.. so i have to pass in to the view the viewmodel containing a datetime property.

<%=Html.TextBox("DateOfBirth", Model.DateOfBirth)%><br />

thanks

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

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

发布评论

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

评论(1

美胚控场 2024-11-06 20:56:36

只需格式化您的 Model.DateOfBirth:

<%=Html.TextBox("DateOfBirth", Model.DateOfBirth.ToShortDateString())%>

Just format your Model.DateOfBirth:

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