Hi Guys
The following code originally posted by raf works great, howeveri need some help modifying it slightly.
is there away in which it could display all 12 months for the current year? but the default should remain on the current month.
at the moment it only displays the upcoming 5 months. and not the previous months already gone in the year.
thanks in advance
Code:
<select name="month">
<%
Dim i2, value, optionv
i2 = 0
do while i2 <= 5
value = Month(DateAdd("m",i2, Now()))
optionv = MonthName(value) + " " + Right(Year(Now),2)
response.write("<option value='" & optionv & "'>"& optionv &"</option>")
i2= i2+1
loop
%>
</select>