Ya, but i dont want them to be able to re-submit EVER again... What this is, is an enlistment form for a game, and people will be able to send in there info and hope to be recruited, but i dont want someone spamming there info, or just crap info.
If you are wanting to set a cookie than if they delete cookies than they can submit the form. You can set a field into your db by capturing their IP or email. On your form page do something like:
for cookie:
whatever page the form action is sent to on the bottom put:
Response.Cookie("frmSubmitted") = "True"
on the top of your form page:
If Response.Cookie("frmSubmitted") = "True" Then
Response.Redirect "default.asp"
End If
Doing it like this they will always be redirected if their cookie is set. Using a db would be the same concept.