使用正则表达式如何检查 MVC2 验证中的空日期时间值

发布于 2024-10-21 01:00:39 字数 374 浏览 1 评论 0原文

如何在我的 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 技术交流群。

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

发布评论

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

评论(2

我一向站在原地 2024-10-28 01:00:39

尝试将模型属性设置为可为空的 DateTime:

[Required(ErrorMessage = "EffectiveDate Must not be empty!")]
public DateTime? EffectiveDate { get; set; }

然后 [Required] 属性应该足以针对空字符串进行验证。

Try making your model property a nullable DateTime:

[Required(ErrorMessage = "EffectiveDate Must not be empty!")]
public DateTime? EffectiveDate { get; set; }

Then the [Required] attribute should be enough to validate against an empty string.

绝不放开 2024-10-28 01:00:39

你可以尝试:

[Required(AllowEmptyStrings = false)]
public DateTime EffectiveDate { get; set; }

You could try:

[Required(AllowEmptyStrings = false)]
public DateTime EffectiveDate { get; set; }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文