In my web application I have a form ( a little bit large)...
365 rows that represents the days of a year .
Each row has 4 input fields and a hidden field.
When I submit its data,it sends an exception in my servlet's doPost method,
The fields are named numerically
for example TxtDay1,TxtDay2,.....,TxtDay365.
At the end of the form I have a submit button...
When I analyze it,I noticed that after 40 steps request.getParameter("Txt40" returns null.
I don't want to divide my form into smaller forms.I want to perform the operations in one step.
Any suggestions?
I wonder if there is a limit in size of a form,or capacity limit in my application server (websphere) Salih Sipahi
Software Engineer.
City of Istanbul Turkey
ssipahi@yonbilgi.com
365 rows that represents the days of a year .
Each row has 4 input fields and a hidden field.
When I submit its data,it sends an exception in my servlet's doPost method,
The fields are named numerically
for example TxtDay1,TxtDay2,.....,TxtDay365.
At the end of the form I have a submit button...
When I analyze it,I noticed that after 40 steps request.getParameter("Txt40" returns null.
I don't want to divide my form into smaller forms.I want to perform the operations in one step.
Any suggestions?
I wonder if there is a limit in size of a form,or capacity limit in my application server (websphere) Salih Sipahi
Software Engineer.
City of Istanbul Turkey
ssipahi@yonbilgi.com