Click here to Skip to main content
15,900,461 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
how to catculate next 3 month for current in asp.net
Posted
Comments
Sanchayeeta 4-Sep-14 8:13am    
Question is not clear. Explain properly what you want.
If possible paste your code what you have tried.
Gihan Liyanage 4-Sep-14 8:14am    
Do you want the date after 3 months ?
[no name] 4-Sep-14 8:24am    
In ASP.NET? You don't. You would to use a programming language for that such a C# or VB.NET. Then you would use the methods of the DateTime struct to do your calculation.

1 solution

string next3M = DateTime.Now.AddMonths(3).ToString();
 
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