From: Computerpilot on 07/08/2002
Are you creating an HTML text box? If so, there is limit you can set to how much text will go into the box. IE and Netscape always have reacted differently to HTML so that is no surprise!Your textbox will need a 'maxlength' string to set how many characters can be entered into the text box (ie: maxlength="25"). It may be possible that this is creating your error message or that you just don't have this property set. I would set the property because there may be a conflict with the default setting with IE and Netscape. That is, they may not handle more than 6000 or 20000 characters in a textbox unless it is set in the maxlength. I am not sure of the max allowed characters for an HTML text box.
Hope this helps. I am not sure how you are building your 'application' and which language you are using. If I am off base, then post back with a little more information regarding what you are doing and trying to accomplish, and I can be of more assistance.
Computerpilot