Hi
Title says what I need so I'll paste code that I have now. Am asp noob so

html
Code:
<span>Whats current year?</span>
<input type="text" name="year" />
asp
Code:
<% Dim captcha
captcha = Request.Form("year")
If captcha <> "&Year(Date)" Then
Response.Redirect("wrong.asp")
End If
%>
Now it openes wrong.asp on page load automatically
I think that "&Year(Date)" part is wrong, but when i put "2012" instead, it also openes wrong.asp on page load.
Any suggestions?
Thanks