0

我有一个日期,我正试图在我的网络表单中验证......

这是我正在使用的验证器,但它似乎不起作用......

<asp:RangeValidator ID="rgBHPECoOcuuring" runat="server" ErrorMessage="Assessment Date must be greater than the Birth Date of the Patient and not in the future"
 ValidationGroup="save" ControlToValidate="dtAssessmentDate" Display="None" >
</asp:RangeValidator>

所以我要做的是在 lbDOB 中显示 DOB - 我希望做的是确保该日期不在未来,并且必须至少大于出生日期

有任何想法吗?

4

1 回答 1

0

在这里使用自定义验证器并实现 onservervalidate 处理程序很容易。

自定义验证器

于 2017-10-18T21:02:57.170 回答