使用正则表达式如何检查 MVC2 验证中的空日期时间值
如何在我的 MVC2 验证中验证日期时间属性。
我有 telerik 日期时间选择器来验证
<%= Html.Telerik().DatePicker().Name("EffectiveDate")%>
[Required(ErrorMessage = "EffectiveDate Must not be empty!")]
public DateTime EffectiveDate { get; set; }
}
如果我使用此代码我无法验证 EffevtiveDate。因为我只是怀疑有效日期显示为“”而不是空。
如何在这里使用正则表达式检查“”值?
谢谢
How to validate Datetime property in my MVC2 Validation.
I have telerik datetime picker to validate
<%= Html.Telerik().DatePicker().Name("EffectiveDate")%>
[Required(ErrorMessage = "EffectiveDate Must not be empty!")]
public DateTime EffectiveDate { get; set; }
}
if I use this code I am not able to validation the EffevtiveDate. Because I am just suspecting that effective date showing as "" instead of null.
how to check "" value using regular expressiong here?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试将模型属性设置为可为空的 DateTime:
然后
[Required]
属性应该足以针对空字符串进行验证。Try making your model property a nullable DateTime:
Then the
[Required]
attribute should be enough to validate against an empty string.你可以尝试:
You could try: