How to concate and display 2 Dates in a dropdownlist?
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
Re: How to concate and display 2 Dates in a dropdownlist?
I don't understand, your request is too ambiguous. Try to explain again.
Re: How to concate and display 2 Dates in a dropdownlist?
Well it pretty simple how I explained it.
I figured it out anyways.