3

我需要我的结束日期总是大于开始日期,我尝试使用 CompareValidator 进行验证。

代码如下:

我有一个文本框开始日期

<asp:TextBox ID="TxtStartDate"
             runat="server" />

<asp:CalendarExtender Enabled="True"
                      ID="TxtStartDate_CalendarExtender"
                      TargetControlID="TxtStartDate"
                      runat="server" />

另一个文本框结束日期。

<asp:TextBox ID="TxtEndDate"
             runat="server" />

<asp:CalendarExtender Enabled="True"
                      ID="TxtEndDate_CalendarExtender"
                      TargetControlID="TxtEndDate"
                      runat="server" />

<asp:CompareValidator ControlToCompare="TxtStartDate"
                      ControlToValidate="TxtEndDate"
                      Display="Dynamic"
                      ErrorMessage="CompareValidator"
                      ID="CompareValidator1"
                      Operator="GreaterThan"
                      Type="Date"
                      runat="server" />

但是比较字段验证器会出错。

例如,当开始日期为 2/04/2012 并且结束日期为 10/04/2012 时,它会触发。

4

3 回答 3

10

只需您可以像这样尝试

<asp:CompareValidator ID="cmpVal1" ControlToCompare="txtStartDate" 
         ControlToValidate="txtEndDate" Type="Date" Operator="GreaterThanEqual"   
         ErrorMessage="*Invalid Data" runat="server"></asp:CompareValidator>
于 2012-05-21T12:15:12.047 回答
3

这个是正确的..它解决了我的问题。

<asp:CompareValidator ID="cmpVal1" ControlToCompare="txtStartDate" ControlToValidate="txtEndDate" Type="Date" Operator="GreaterThanEqual"  ErrorMessage="ToDate should be greater than FromDate" runat="server"></asp:CompareValidator>

别忘了写:

cmpVal1.Validate() 

在发生比较的事件上。

于 2012-10-12T09:47:41.813 回答
0

开始日期(从)和结束日期(到)使用 JAVASCRIPT 验证

它关心 From date 和 To date 都应该小于今天的日期(Currentdate)。从日期应该小于到日期。

文本框

<asp:TextBox ID="txtFromDate" runat="server" onChange="javascript: txtFromDateChanged(this)"></asp:TextBox>
<asp:TextBox ID="txtToDate" runat="server" onChange="javascript: txtToDateChanged(this);" ></asp:TextBox>

java脚本(将脚本块放在头部)

<script type="text/javascript">

        function txtToDateChanged(sender, args) {
            var date = new Date();
            var startDate = Date.parse(document.getElementById('<%= txtFromDate.ClientID %>').value);
            var endDate = Date.parse(document.getElementById('<%= txtToDate.ClientID %>').value);
            var timeDiff = endDate - startDate;
            var daysDiff = Math.floor(timeDiff / (1000 * 60 * 60 * 24));

            if (date > endDate) {
                document.getElementById('<%= txtToDate.ClientID %>').value = "";
                alert('*Select date greater than Today.');
            }
            if (daysDiff < 0) {
                document.getElementById('<%= txtToDate.ClientID %>').value = "";
                alert('*FromDate should be less than Todate');
            }

        }
        function txtFromDateChanged(sender, args) {
            var date = new Date();
            var startDate = Date.parse(document.getElementById('<%= txtFromDate.ClientID %>').value);
            if (date > startDate) {
                document.getElementById('<%= txtFromDate.ClientID %>').value="";
                alert('*Select date greater than Today.');
            }
        }
    </script>
于 2018-02-05T18:49:45.097 回答