Order Staff Form
Call now to order staff for your next event: 1(877) 59-STAFF (78233)
<% If Request.ServerVariables("REQUEST_METHOD") = "POST" Then
response.write("entered code="&Request.Form("captcha_code"))
response.end
If Request.Form("captcha_code") <> Session("captcha_code") Then
Request.Form("hdn") = "aaa"
Response.Write "Your captcha code is not valid. "
Response.Write "Try again "
response.write "Hello "
Response.End
Else
'' put here your code
'' at the end empty session to prevent re-send the form
Session.Contents.Remove("captcha_code")
response.Redirect("thanks.shtml")
End If
Else
End If%>
|