Ask a Question related to ASP, Design and Development.
-
Augustus #1
Removing carriage returns from <textarea></textarea> input
Hiya,
I have a form with a <textarea></textarea> to receive user input.
This input is then stored in a database and sent by fax...
I need to be able to remove the carriage returns (enter key... vbcrlf...)
from the input so that somebody doesn't do something like fill the textarea
with 100s of keypresses of the enter key and end up spitting out tonnes of
blank pages on the fax machine
thanks,
Clint
Augustus Guest
-
TextArea
I am making a simple blog, and was wondering if anyone had any suggestions on making a wysiwyg editor. I want to try and make it as much cross... -
Removing carriage returns...
Here is the code that I am using to try and remove the Carriage Returns and Line Feeds and replace them both with spaces: ... -
Printing a TextArea box
Im trying to find a script to print the content of a TextArea box (component). Can anyone help me? -
textarea value
I am trying to collect the value of an HTML textarea. The problem I am having is that I only can get he first line in the textarea. When a user... -
<textarea> bug????
Simple vbscript,html page loading into access. Input pg posting to Confirm pg, then sending to access. when using; <textarea name="name"... -
Ken Schaefer #2
Re: Removing carriage returns from <textarea></textarea> input
strInput = Replace(strInput, vbCrLf, "")
Cheers
Ken
"Augustus" <Imperial.Palace@Rome.It> wrote in message
news:bjm95a$kr5k1$1@ID-97594.news.uni-berlin.de...
: Hiya,
:
: I have a form with a <textarea></textarea> to receive user input.
:
: This input is then stored in a database and sent by fax...
:
: I need to be able to remove the carriage returns (enter key... vbcrlf...)
: from the input so that somebody doesn't do something like fill the
textarea
: with 100s of keypresses of the enter key and end up spitting out tonnes of
: blank pages on the fax machine
:
: thanks,
:
: Clint
:
:
Ken Schaefer Guest



Reply With Quote

