on my register page, http://www.insidewaco.com/forum/register.asp?mode=Register , I have listboxes for entering the birthdates of the members, it then checks to see if the person is >= 16 yrs. However, I have the years listed from 1900-2000, but too many people are just selecting 1900 (since its the first choice) and their age is listed as 101 on their member profile. Anyways, I want to have the list start with 2000 and go down to 1900. How do I do that?
Here's the code I have to populate the listbox: <select name="birthday_year" size="1"> <option value="">Year</option>
<% for yearcount = 1900 to 2000 %> <option value="<%=yearcount%>" <% if myYear = yearcount then response.write "selected" else response.write "" %>><%=yearcount%></option>