hi guys, I have to add one month to todays date and have to get date after 1 month.Can anybody help?
+2
A:
dateAfterMonth = dateAfterMonth.AddMonths(1)
If you would add 1 month from now:
dateAfterMonth = DateTime.Now.AddMonths(1)
Ravadre
2009-09-05 09:03:40
A:
using Fluent DateTime http://fluentdatetime.codeplex.com/
Dim newDate as DateTime = 1.Months().FromNow()
Simon
2009-09-06 09:32:26