【发布时间】:2013-08-12 17:43:34
【问题描述】:
大家好,我的日期格式如下dd-MMM-yy 我正在使用比较验证器来验证日期,如下所示
<asp:CompareValidator ID="cmpDates" runat="server" ControlToValidate="StartDate"
SetFocusOnError="true" ControlToCompare="EndDate"
ErrorMessage="EndDate must be greater than StartDate"
Display="None" Operator="DataTypeCheck"
ValidationGroup="vg" Type="Date"
CultureInvariantValues="true">
</asp:CompareValidator>
但这不能按要求工作,所以有人可以帮助我如何验证所需格式的日期
【问题讨论】:
-
您可以使用
CalendarExtender并设置它的 Format 属性 -
您好,我在这里使用 Devexpress 控件
标签: c# asp.net devexpress comparevalidator