How can I use CompareValidator for times without dates?
问题 When I enter 9:00 into the Start control, and 16:00 into Finish; the code below fails validation. Does anybody know a way I can use the ASP.NET validator for times without the dates? Start <asp:TextBox ID="txtStart" runat="server" /> (hh:mm) <br /> Finish <asp:TextBox ID="txtFinish" runat="server" /> (hh:mm) <br /> <asp:CompareValidator id="cpvFinish" ControlToValidate="txtFinish" ControlToCompare="txtStart" Operator="GreaterThanEqual" Type="Date" Display="Static" EnableClientScript="true"