i am using vb.net. and I want how to display next six days date from current date.
lblDate.Text = System.DateTime.Now.ToString("dd MMMM yyyy")
This code display the current date.
|
i am using vb.net. and I want how to display next six days date from current date.
This code display the current date. |
||||
|
|
You can use
You can also use some other methods of DateTime like AddHours, AddMinutes etc, but here best fit is to use AddDays |
|||
|
|
Reference: http://msdn.microsoft.com/en-us/library/system.datetime.adddays.aspx |
|||
|
|
|
|||
|
|
|
dim 6DaysFromNow = Now.AddDays(6).ToString("dd MMMM yyyy") |
|||||
|