15
I am working on ASP with MVC 4, and I hold create a list of dates from the data entered by the user. For example, the user inserts the day of the month in which a certain occurrence will be made. It also inserts the start date where it will start and the end date to generate the dates. For example:
The user inserts the Day 19
start date to 05/02/2014
and end date for 20/05/2014
I in the controller have to generate a date list of type:
19/02/2014
19/03/2014
19/04/2014
In the above example, the date 19/05/2014 is missing?
– Vinicius Rocha