Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Andrzejek on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how many input box I can put in one page 1

Status
Not open for further replies.

omerdurdu

Programmer
Jul 21, 2001
72
TR
I created a form, it has 168 input box. My question is
how many input box I can put in one page. When I click update button it is giving error: [OBDC socket error] Too many fields defined.
When I cut input form at 128th input box, it is updating.
Does someone has any idea what is happening?
Thanks for help
 
are any of the input boxes file fields? if yes try
ENCTYPE="multipart/form-data in the form tag
what kind of method are you using post or get?
you should use post

hope this helps

 
Is your form a get or a post?

POST is your best bet as Get cuts off after so much data is sent across.
David McIntosh

Let me know if this post helped you...
Please click below: "This Post was Helpful"
 
It is post like this:
<cfform action=&quot;insert2a.cfm&quot; method=&quot;POST&quot; enablecab=&quot;Yes&quot; name=&quot;form2&quot; id=&quot;form2&quot;>
I am not sure still not going more than 128 input box.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top