Of course it is not useful for ASP experts, but it is somewhat useful for beginners and artists who are just getting started.
Function selectdo(a,d,b,c)
Response.write"<select name='"&a&"'><option>"&d&"</option>"
for i=b to c
if i<10 then
i="0"&i
end if
Response.write"<option>"&i&"</option>"
next
Response.write"</select>"
End Function
can also extend a more complete SELECT form on this basis.