【发布时间】:2017-02-09 05:16:12
【问题描述】:
我正在尝试比较格式为 dd-mm-yyyy 的两个日期 我使用了下面的代码
<input type="text" id="ocd" size="25" title="Closure Date" placeholder="Possible Closure Date " runat="server"> // where this exists in dd-mm-yyyy format
<input type="text" id="od" size="25" title="Closure Date" placeholder=" Date Of Opportunity" runat="server"> // where this exists in dd-mm-yyyy format
<asp:CompareValidator ID="CompareValidator1" ValidationGroup = "Date" ForeColor = "Red" runat="server"
ControlToValidate = "od" ControlToCompare = "ocd" Operator = "LessThanEqual" Type = "Date"
ErrorMessage="Receipt date must be less than Closure date."></asp:CompareValidator>
但它只比较 dd in dd-mm-yyyy 我该如何解决这个问题?
【问题讨论】: