1

我有一个旅游申请表,它有 2 个日期,从日期和到日期。现在我使用 dd/MM/yyyy 格式输入日期,我需要验证 To date,例如 To date 必须大于或等于 start date。早些时候应该被禁用,我想用比较验证器来做到这一点..

目前我正在使用带有 ajax 控制工具包日历的文本框。

因此,如果有人有任何提示,请帮助我。

提前致谢

4

1 回答 1

0

you can try as bellow:

<asp:CompareValidator ID="cmpVal1" ControlToCompare="txtStartDate" 
         ControlToValidate="txtEndDate" Type="Date" Operator="GreaterThanEqual"   
         ErrorMessage="*Error message" runat="server"></asp:CompareValidator>

but there can be issue with date format, Check this answer for more information.

于 2012-05-29T06:48:43.080 回答