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

Textarea maximum size

Status
Not open for further replies.

Vadim

Programmer
Feb 5, 2002
75
US
Is it possible to enter more than 512 characters in <textarea>? Every time when I enter more than 512 and submit a form it shows me an error. Please, help to find a solution
 
The problem is with the form handler and not the textarea.

By &quot;form handler&quot; I mean the program that processes the stuff sent by the form when it is submitted. You can find its URL by looking at your form's action attribute (<form action=&quot;...&quot;>). Form handlers are typically files that end in .asp, .jsp, .pl, .cgi, .php etc.

Some bit of code within the form handler is not allowing the input from the textarea to be over a certain number (512) of characters.

To edit your form handler you have to be familiar with a computer language such as Perl or PHP, otherwise you need to have somebody knowledgable do it for you. Judging from your apparent situation, you may not even have access/permission to change this file. Check with your server's administrator.

cheers,
petey
 
Well, from glancing at your other posts it appears you'd probably already know all this stuff, and that your a JSP guy maybe?

Anyway, textareas don't have a size limit so the problem must be in the server.

petey
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top