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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem in form submit (too many inputs not accepted) 1

Status
Not open for further replies.

smuralig

IS-IT--Management
Joined
Dec 26, 2002
Messages
10
Location
IN
Hi,

I have written code ( trans1.asp) for a form which has 162 input text boxs to get the user value using GET method. All I am getting through array variable. when I submit, it should go to trans2.asp ( included in action). But it is not going trans2.asp, somtime it is going when I include 132 input text boxs.

I would like to know is there any limitation in the form tag used while submit.

help pls.

Thanks
Murali
 
There's a limit to GET submissions, definitely. I believe it's around 2048 characters (field names plus field values). Changing your form to POST might solve the problem -- it's definitely larger -- though I once hit a ceiling there, too.

Remember that the GET form method is really just effectively an extremely long query string.
 

Thanks Genimuse. have a star.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top