Tuesday, December 04, 2007

combating spam from feedback forms

One more technique to supplement the one I've described earlier - check for the string http:// and don't email the form if present! In asp, that translates to
if Instr(strString,"http://") then
Response.Write " -- "
else
Mail.Send
end if

No comments:

Post a Comment