This is a discussion on Add a number of days to a date within the HTML, CSS and Javascript Coding Techniques forums, part of the Web Development category; Hi all... Can anyone tell me how can i add a number of days to a date. Thanks in advance......
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| Hi all... Try this code to add a number of days to a date: <script language="JavaScript"> function addDays(myDate,days) { return new Date(myDate.getTime() + days*24*60*60*1000); } alert(addDays(new Date(),10)); </script> Thanks... |
| |||
| Quote:
i want to know about that. |
| |||
| import java.util.*; import java.text.*; public class Testing { public static void main(String[] args) { Calendar cal = Calendar.getInstance(); cal.add(Calendar.DATE, 100); System.out.println(new SimpleDateFormat("dd-MM-yyyy").format(cal.getTime())); } } |
| |||
| Hey, I didn't know this thanks for sharing.
__________________ QA Test Management |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Show the number of days, hours and seconds till Y3K. | itbarota | HTML, CSS and Javascript Coding Techniques | 1 | 03-10-2008 01:28 AM |
| calculate the number of days in the current month | itbarota | HTML, CSS and Javascript Coding Techniques | 1 | 02-08-2008 06:30 AM |
| How do I work out the date seven days before a text string mm/dd/yy? | itbarota | HTML, CSS and Javascript Coding Techniques | 1 | 01-01-2008 08:42 PM |
| How can I calculate the number of days elapsed between two dates? | itbarota | HTML, CSS and Javascript Coding Techniques | 2 | 12-19-2007 09:14 PM |
| How can we know the number of days between two given dates using PHP? | Sabari | PHP Programming | 5 | 09-27-2007 07:24 AM |