I have a form that has 10 rows of information, each row has 8 fields. Combined with the form header there are a total of approximately 100 fields.
When I test the form, using a DSL connection 70% of the time it cannot find the action script. The problem is that there is too much information being sent.
I'm using the post method. The form gets sent eventually when you press refresh a few times.
The drawbacks are obvious, it's annoying, inefficient and can lead to duplicate entries, plus users will not always have a DSL connection.
The post method sends all the fields even if some are blank. That is the user could fill out two rows and send (16 fields containing) data but the other eight rows (64 fields) would be sent as well even though they are blank.
Could someone suggest a better way to deal with this coding challenge, aside from reducing the size of the form.
Thanks