% Response.CacheControl = "no-cache" Response.AddHeader "Pragma", "no-cache" Response.Expires = -1 %> <% Function ValidateCAPTCHA(valCAPTCHA) SessionCAPTCHA = Trim(Session("CAPTCHA")) Session("CAPTCHA") = vbNullString if Len(CStr(SessionCAPTCHA)) < 7 then ValidateCAPTCHA = False exit function end if if CStr(SessionCAPTCHA) = CStr(valCAPTCHA) then ValidateCAPTCHA = True else ValidateCAPTCHA = False end if End Function %>
![]()
|
||