I have no idea about what your problem is, but could you shead me some light as to why you have
Code:
<select name="Year" id="Year">
<option value=""></option>
<%
Dim thisYear, i
thisYear = DatePart("yyyy",Date())
For i = (thisYear-84) to (thisYear-6)
Response.Write "<option value='" & i & "'"
If (Not isNull(Request.Form("Year"))) Then If (CStr(i) = CStr(Request.Form("Year"))) Then Response.Write("SELECTED") : Response.Write("")
Response.Write ">" & i & "</option>" & vbCRLF
Next
%>
</select>
Why have you got 3 " ???? You have the extra one here
</option>"
I dont think it is your problem, but i just dont understand why it is there.
Thank you.
Mik 
__________________
Please login or register to view this content. Registration is FREE - Tumblog with thoughts, quotes, links, videos, images and my creations.
Please login or register to view this content. Registration is FREE - The best free web browser.
Please login or register to view this content. Registration is FREE - Firefox is now Firefail.
|