asp.net-mvc – DateTime字段和Html.TextBoxFor()帮助器 如何正确使用?

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – DateTime字段和Html.TextBoxFor()帮助器 如何正确使用?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的模型中有一个DateTime字段。如果我以这种方式在强类型的部分视图中尝试使用此字段
<%= Html.TextBoxFor(model => model.DataUdienza.ToString("dd/MM/yyyy"),new { style = "width: 120px" })  %>

我将在运行时收到以下编译错误

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

无论如何,如果我使用它去除格式化,ToString(“dd / MM / yyyy”),一切正常,但字段格式化使用的时间部分,我根本不需要。

我在做错什么?这是正确的处理方法

谢谢帮忙!

编辑

这是模型类中的属性声明

[required]
[DisplayName("Data Udienza")]
[DataType(DataType.Date)]
[DisplayFormat(ApplyFormatInEditMode = true,DataFormatString = "{0:dd/MM/yyyy}")]
public DateTime DataUdienza { get; set; }

解决方法

创建一个名为DateTime.ascx的编辑器模板
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<System.DateTime?>" %>
<%=Html.TextBox("",(Model.HasValue ? Model.Value.ToString("MM/dd/yyyy") : string.Empty),ViewData) %>

将其放在您的Views / Shared / EditorTemplates文件夹中。现在当你打电话:

<%= Html.EditorFor(model => model.DataUdienza) %>

您的DateTime将被格式化,没有时间。

这将发生在所有DateTimes这样称呼,虽然…

自定义html属性可以这样使用:

<%= Html.EditorFor(model => model.DataUdienza,new {customAttr = "custom",@class = "class"}) %>

它作为ViewData传递给EditorTemplate。

原文链接:https://www.f2er.com/aspnet/253555.html

猜你在找的asp.Net相关文章