|
|||||||
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
#1 |
|
Member (10 bit)
|
form spam protection
What is a good method to use to prevent people submitting forms over and over. What I need is kinda like what the forum uses, where you cant submit something within x seconds after you submitted the last thing.
The site this will be implemented on(www.showoursupport.com), is in ASP(vbscript) and SQL. One method we thought of was to use a session variable and set it to x seconds. But we are already using a session variable for another thing. Can we make another session variable to use for this? If so, how do we go about doing that? or any other ideas? thanks |
|
|
|
|
|
#2 |
|
PCMech: Saving Lives
Join Date: Apr 2004
Location: England, the United Kingdom
Posts: 1,839
|
To create a session cookie:
Code:
Session("SessionCookiesName") = "Value"
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|