|
 |
asp_web_howto thread: Text Boxes
Message #1 by "O'Hara, Elliott M" <EMOHARA@k...> on Tue, 20 Feb 2001 09:46:58 -0500
|
|
What does a text box submit a caracter returns as??
Message #2 by "Alex Shiell, ITS, EC, SE" <alex.shiell@s...> on Tue, 20 Feb 2001 15:01:52 -0000
|
|
vbCrLf
-----Original Message-----
From: O'Hara, Elliott M [mailto:EMOHARA@k...]
Sent: Tuesday, February 20, 2001 2:47 PM
To: ASP Web HowTo
Subject: [asp_web_howto] Text Boxes
What does a text box submit a caracter returns as??
________________________________________________________________________
Scottish Enterprise Network
http://www.scottish-enterprise.com
Message #3 by "Wally Burfine" <oopconsultant@h...> on Tue, 20 Feb 2001 15:24:29 -0000
|
|
vbCrLf = Chr(13) & chr(10)
>From: "O'Hara, Elliott M" <EMOHARA@k...>
>Reply-To: "ASP Web HowTo" <asp_web_howto@p...>
>To: "ASP Web HowTo" <asp_web_howto@p...>
>Subject: [asp_web_howto] Text Boxes
>Date: Tue, 20 Feb 2001 09:46:58 -0500
>
>What does a text box submit a caracter returns as??
>
Message #4 by "O'Hara, Elliott M" <EMOHARA@k...> on Tue, 20 Feb 2001 11:03:52 -0500
|
|
ok....
It doesn't seem to be working...
stuff = replace(request.form("stuff"),"vbCrLf","<BR>")
what am i doing wrong???
if it matters I'm sending it to a SQL text column
-----Original Message-----
From: Wally Burfine [mailto:oopconsultant@h...]
Sent: Tuesday, February 20, 2001 10:24 AM
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Text Boxes
vbCrLf = Chr(13) & chr(10)
>From: "O'Hara, Elliott M" <EMOHARA@k...>
>Reply-To: "ASP Web HowTo" <asp_web_howto@p...>
>To: "ASP Web HowTo" <asp_web_howto@p...>
>Subject: [asp_web_howto] Text Boxes
>Date: Tue, 20 Feb 2001 09:46:58 -0500
>
>What does a text box submit a caracter returns as??
>
Message #5 by "O'Hara, Elliott M" <EMOHARA@k...> on Tue, 20 Feb 2001 10:56:59 -0500
|
|
thanks
-----Original Message-----
From: Alex Shiell, ITS, EC, SE [mailto:alex.shiell@s...]
Sent: Tuesday, February 20, 2001 10:02 AM
To: ASP Web HowTo
Subject: [asp_web_howto] RE: Text Boxes
vbCrLf
-----Original Message-----
From: O'Hara, Elliott M [mailto:EMOHARA@k...]
Sent: Tuesday, February 20, 2001 2:47 PM
To: ASP Web HowTo
Subject: [asp_web_howto] Text Boxes
What does a text box submit a caracter returns as??
Message #6 by Shaun Steckley <SSTECKLEY@P...> on Tue, 20 Feb 2001 11:08:58 -0500
|
|
don't place quotes around vbcrlf...
-----Original Message-----
From: O'Hara, Elliott M [mailto:EMOHARA@k...]
Sent: Tuesday, February 20, 2001 11:04 AM
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Text Boxes
ok....
It doesn't seem to be working...
stuff = replace(request.form("stuff"),"vbCrLf","<BR>")
what am i doing wrong???
if it matters I'm sending it to a SQL text column
-----Original Message-----
From: Wally Burfine [mailto:oopconsultant@h...]
Sent: Tuesday, February 20, 2001 10:24 AM
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Text Boxes
vbCrLf = Chr(13) & chr(10)
>From: "O'Hara, Elliott M" <EMOHARA@k...>
>Reply-To: "ASP Web HowTo" <asp_web_howto@p...>
>To: "ASP Web HowTo" <asp_web_howto@p...>
>Subject: [asp_web_howto] Text Boxes
>Date: Tue, 20 Feb 2001 09:46:58 -0500
>
>What does a text box submit a caracter returns as??
>
Message #7 by <mzcfilip@y...> on Tue, 20 Feb 2001 11:19:27 -0500
|
|
get rid of the quotes from around vbCrLf.
Did you guys know ya can't send an e-mail with the first "remove"? heh
"get rid of"="remove"
wheee I'm bored at work today...
-----Original Message-----
From: O'Hara, Elliott M [mailto:EMOHARA@k...]
Sent: Tuesday, February 20, 2001 11:04 AM
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Text Boxes
ok....
It doesn't seem to be working...
stuff = replace(request.form("stuff"),"vbCrLf","<BR>")
what am i doing wrong???
if it matters I'm sending it to a SQL text column
-----Original Message-----
From: Wally Burfine [mailto:oopconsultant@h...]
Sent: Tuesday, February 20, 2001 10:24 AM
To: ASP Web HowTo
Subject: [asp_web_howto] Re: Text Boxes
vbCrLf = Chr(13) & chr(10)
>From: "O'Hara, Elliott M" <EMOHARA@k...>
>Reply-To: "ASP Web HowTo" <asp_web_howto@p...>
>To: "ASP Web HowTo" <asp_web_howto@p...>
>Subject: [asp_web_howto] Text Boxes
>Date: Tue, 20 Feb 2001 09:46:58 -0500
>
>What does a text box submit a caracter returns as??
>
Message #8 by "Wally Burfine" <oopconsultant@h...> on Tue, 20 Feb 2001 19:49:42 -0000
|
|
take the quotes off of vbcrlf
stuff = replace(request.form("stuff"),vbCrLf,"<BR>")
>From: "O'Hara, Elliott M" <EMOHARA@k...>
>Reply-To: "ASP Web HowTo" <asp_web_howto@p...>
>To: "ASP Web HowTo" <asp_web_howto@p...>
>Subject: [asp_web_howto] Re: Text Boxes
>Date: Tue, 20 Feb 2001 11:03:52 -0500
>
>ok....
>It doesn't seem to be working...
>
>stuff = replace(request.form("stuff"),"vbCrLf","<BR>")
>
>what am i doing wrong???
>if it matters I'm sending it to a SQL text column
>
>-----Original Message-----
>From: Wally Burfine [mailto:oopconsultant@h...]
>Sent: Tuesday, February 20, 2001 10:24 AM
>To: ASP Web HowTo
>Subject: [asp_web_howto] Re: Text Boxes
>
>
>vbCrLf = Chr(13) & chr(10)
>
>
> >From: "O'Hara, Elliott M" <EMOHARA@k...>
> >Reply-To: "ASP Web HowTo" <asp_web_howto@p...>
> >To: "ASP Web HowTo" <asp_web_howto@p...>
> >Subject: [asp_web_howto] Text Boxes
> >Date: Tue, 20 Feb 2001 09:46:58 -0500
> >
> >What does a text box submit a caracter returns as??
> >
>
|
|
 |