Hi,

How to add 2 dates in a row in DDL ( 12/26/2005 - 01/08/2006 )

Below is the code I use to make add dates by day, but I want add extra date like this example. ( 12/26/2005 - 01/08/2006 )

Thanks


Dim MyWeekDay As Integer
Dim i As Integer
i = 0
Do While (i <= 30)

MyWeekDay = Weekday(Today.AddDays(i))

If MyWeekDay = 1 Then
DropDownList1.Items.Add(Today.AddDays(i).ToString("d"))

End If
i = i + 1

Loop