Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 MVC 4 项目,对在日期选择器中验证日期后显示的默认错误文本不满意。有没有办法覆盖这个?我的剃刀代码如下所示:@Html.EditorFor(model => model.EstimatedDeliveryDate)
@Html.EditorFor(model => model.EstimatedDeliveryDate)
您可以通过模型中的 DataAnnotation 设置它。
如果您使用的是必需属性:
[Required(ErrorMessage = "You must give an estimated delivery date")] public string EstimatedDeliveryDate { get; set; }