By Dina Hess
| Title: | HTTP_REFERER |
| Date: | 05/11/04 (9 Posts) |
| Summary: | It's best not to rely on CGI.http_referer. Instead, try matching a UUID in a hidden form field to a cookie-scoped UUID to determine if a form has been spoofed. Note that although this method prevents form submission, it does not stop screen scraping; for that, you'll need the text-in-a-graphic approach. |
| Title: | CFMX 6.1 and Order By Error |
| Date: | 05/11/04 (7 Posts) |
| Summary: | Query of Queries recognizes "section" as a reserved word. To work around, enclose the word in brackets like this: "[section]." Here's a list of all Query of Queries reserved words. |
| Title: | Image Reset Button |
| Date: | 05/11/04 (12 Posts) |
| Summary: | Can INPUT TYPE="image" be modified to behave like INPUT TYPE="reset"? |
|
<img src="images/reset.gif" onclick="document.form_name.reset();" />
|
|
| *** OR *** | |
|
<button type="reset" style="border:none;background-color:transparent;">
<img src="images/reset.gif"> </button> |
|