Google Answers Logo
View Question
 
Q: HTML TEXTAREA LIMIT OF 1000 BYTES USING IE BUT NOT NETSCAPE ( No Answer,   1 Comment )
Question  
Subject: HTML TEXTAREA LIMIT OF 1000 BYTES USING IE BUT NOT NETSCAPE
Category: Computers > Programming
Asked by: marcirvin-ga
List Price: $18.00
Posted: 04 Oct 2003 08:45 PDT
Expires: 04 Oct 2003 13:07 PDT
Question ID: 262701
I am building an HTML application where I need my IIS 5.0 to retrieve
unlimited amounts of text via the TEXTAREA form field.  I test by
pasting large amounts of text, but when I click send I witness on the
server side truncated text when IE is the browser.  I have searched
and searched and can't even find definitive information on how
maximums are handled in IE. No "Advance Settings" exist for this
limit.  It is especially disconcerting when Netscape sends all the
data, but Netscape is no longer sanctioned for app building.  I need
to handle at least 10000 bytes of text.  I already know how to use a
Java script to limit the Textarea size.

Request for Question Clarification by joseleon-ga on 04 Oct 2003 10:10 PDT
Hello, marcirvin:
  I have tested what you say, and it works perfectly, at least with
PHP, take a look at this code:

<form action=test2.php method=post>
<textarea name="textarea"></textarea>
<input type="submit" value="submit">
</form>
<?php
	$textarea=$_POST['textarea'];
	echo $textarea;
	
?>

I have submitted 11452 bytes of text using the textarea and it works
perfectly, could you tell me which server language are you using to
process the posted data?

Regards.
Answer  
There is no answer at this time.

Comments  
Subject: Re: HTML TEXTAREA LIMIT OF 1000 BYTES USING IE BUT NOT NETSCAPE
From: khushwant-ga on 04 Oct 2003 12:04 PDT
 
if your site suppors frontpage use this
<body>

<form method="POST" action="--WEBBOT-SELF--">
  <!--webbot bot="SaveResults" S-Label-Fields="TRUE"
U-File="you@you.com" S-Format="TEXT/CSV" --><p>
  <textarea rows="11" name="S1" cols="39"></textarea><input
type="submit" value="Submit" name="B1"><input type="reset"
value="Reset" name="B2"></p>
</form>

</body>

</html>

Important Disclaimer: Answers and comments provided on Google Answers are general information, and are not intended to substitute for informed professional medical, psychiatric, psychological, tax, legal, investment, accounting, or other professional advice. Google does not endorse, and expressly disclaims liability for any product, manufacturer, distributor, service or service provider mentioned or any opinion expressed in answers or comments. Please read carefully the Google Answers Terms of Service.

If you feel that you have found inappropriate content, please let us know by emailing us at answers-support@google.com with the question ID listed above. Thank you.
Search Google Answers for
Google Answers  


Google Home - Answers FAQ - Terms of Service - Privacy Policy