Click here to Skip to main content
15,893,622 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello friends, I want to ask something. Can I use the range validator to set a limit on dates in my textbox? I have a project management system in which I make entries according to financial year. My financial year starts from April and ends at March. So, I want the user to not be able to make an entry in a financial year beyond March.

eg: project name -----select---
financial year 2011-2012
date in date textfeild my users should only be able to make entries within the limit of April 2011 to March 2013. I want a generalized expression for this.
Posted
Updated 27-Feb-13 5:18am
v2

1 solution

C#
RangeValidator1.MaximumValue = System.DateTime.Now.ToShortDateString();
RangeValidator1.MinimumValue = System.DateTime.Now.AddMonths(-2).ToShortDateString();
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900