form generating spam

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Jimpell
    New Member
    • Nov 2011
    • 1

    form generating spam

    I have several forms that were giving me spam problems. I executed Captcha on the site but that also created a lot of consumer calls and problems.

    Has anybody tried this solution or have any comments. I'm running ecom site with no new session id with https.
    So I encript the session id and place in a hidden field on the form. I unencript the sessionid on the form exec page. if the value = process the form not same value I redirect back to the form. Just as a back-up if session id = 0 I generate a random number encript and go through the same proess.

    seems to be working...thank s
  • CroCrew
    Recognized Expert Contributor
    • Jan 2008
    • 564

    #2
    Hello Jimpell,

    Are you still having trouble with this?

    CroCrew~

    Comment

    • multinett
      New Member
      • Sep 2011
      • 16

      #3
      make an image, that looks like a submit-button
      change the submit button into an image button and give it a name:

      <input type = "image" name="pushme">

      on your next side, where you get the post-data you can check weather the x or y coordinates are set.

      if isnumeric(reque st.form(x.pushm e)) then response.write "send by a human user"

      since i used "my invention" i have no more spam with my forms.

      (i hope the spammers don't read this infomation ;) )

      Comment

      Working...