[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: [cobalt-users] max character length - cgi-scripts
- Subject: RE: [cobalt-users] max character length - cgi-scripts
- From: "mjr" <mjr@xxxxxxxxxxx>
- Date: Tue May 13 11:31:01 2003
- List-id: Mailing list for users to share thoughts on Sun Cobalt products. <cobalt-users.list.cobalt.com>
I tried the WRAP controls each way and the problem doesn't go away......I
even tried the same form setup on another server (raq3) and it works
fine...I've done many forms and they have all worked...The raq 4 that has
this weird problem is new and this is the first form I'm using on the
server. There must be a place to increase the max characters sent...anybody
know where or what's going on here?????
Thanks
Regards,
Mitch
http://www.misswebhost.com
>
> > Any form fields that is over
> the amount
> > of characters (about 600 or 9 lines) gets chopped
> > up when they information arrives by emails - it adds in a
> character "!" and
> > then starts on the next line.
>
> And the answer is best found in an html book, manual or web-resource
> on forms. Or even in a list for webmasters.
>
FYI: http://www.calstatela.edu/library/bi/ssotton/htmltutrforms.htm
WRAP controls word wrapping in the Textarea box. Wrap is supported only by
NetscapeR (NS) and Internet ExplorerR (IE) and their implementations use
different names.
off(NS, IE) turns off text wrapping -- text scrolls until the Enter key is
pressed. (default NS).
soft(NS)/virtual(IE) causes text to wrap at the edge of the Textarea box but
does not include these wraps as carriage returns when the data is sent to
the server. (default IE)
hard(NS)/physical(IE) causes text to wrap at the edge of the Textarea box
and includes these wraps as carriage returns when the data is sent to the
server.