/ Published in: ASP
Expand |
Embed | Plain Text
<select name="MONTH"> <option value=""></option> <% for i = 1 to 12 response.write "<option value="""&i&""">" &i&" - "&monthname(i,1) & "</option>" next %> </select> <select name="YEAR" style="width:60px;"> <option value=""></option> <% for i = year(now)+10 to year(now) step -1 response.write "<option value="""&i&""">"&i&"</option>" next %> </select>
You need to login to post a comment.
