- Moderator
- #1
OK... here's a silly one.
I have a BIG form that gets filled out... and I use this CUTE little routine to write the data into the database....
The routine will step through the fields on the submitted form, using a:
Well, that's fine and dandy, and works well... however, people are also allowed to EDIT the form later....
The problem is, the For Each Field statement works great, unless they UNCHECK a checkbox; then it doesn't POST the data for that field (letting me know that they unchecked something that was previously checked).
Is there a way to get my form to post ALL the fields, regardless of whether it thinks it should or not?
Just my 2¢
-There once was a man from Peru
Who wanted to write a Haiku
but...
--Greg
I have a BIG form that gets filled out... and I use this CUTE little routine to write the data into the database....
The routine will step through the fields on the submitted form, using a:
Code:
For Each Field in Request.Form
Well, that's fine and dandy, and works well... however, people are also allowed to EDIT the form later....
The problem is, the For Each Field statement works great, unless they UNCHECK a checkbox; then it doesn't POST the data for that field (letting me know that they unchecked something that was previously checked).
Is there a way to get my form to post ALL the fields, regardless of whether it thinks it should or not?
Just my 2¢
-There once was a man from Peru
Who wanted to write a Haiku
but...
--Greg