i have a textbox
which takes input date from user. now i want to make a validator
which checks either date is greater then today or not.
i tried this link but it has some problems http://forums.asp.net/t/1116715.aspx/1
if i give this date 25/03/2013
it is correct but if give 01/04/2013
, it says it is less then today.
**
Update
<asp:CompareValidator ID="CompareValidator2" runat="server" ControlToValidate="txtReturnDate"
Display="Dynamic" ErrorMessage="Date should be greater then today" ForeColor="Red"
Operator="GreaterThan" ValidationGroup="VI">Date should be greater then today</asp:CompareValidator>
**
Please help me to solve this problem