Hi,
I would like to restrict entry of a date if date entered is less than today. I tried to put it inside Compare Validator but could not managed.
Thanks in advance.
Best Regards
Here is the code below
I would like to restrict entry of a date if date entered is less than today. I tried to put it inside Compare Validator but could not managed.
Thanks in advance.
Best Regards
Here is the code below
VB.NET:
<asp:TextBox runat="server" ID="TextBox_tarih" Text=""></asp:TextBox>
<asp:CalendarExtender ID="TextBox_tarih_CalendarExtender" runat="server" Format="dd/MM/yyyy"
TargetControlID="TextBox_tarih">
</asp:CalendarExtender>
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="TextBox_tarih"
ErrorMessage="Tarihi Seçiniz" SetFocusOnError="True" Font-Bold="True"></asp:RequiredFieldValidator>
<asp:CompareValidator ID="CompareValidator2" runat="server" ControlToValidate="TextBox_tarih"
ControlToCompare="<% Date.Now() %>" Operator="LessThan" Type="Date"
ErrorMessage="Bugünün Tarihinden küçük olamaz..."></asp:CompareValidator>