Passing value from a Text Area field

M

Motty

Hi I'm trying to pass the value of a 'text box area' using
response.redirect, the .asp page and a list of parameters in the form
of page.asp?p1=request("fieldname")
All is OK with regular fields (text or numeric) but I get only the
first line of the Text Area.
Is there a way to pass all lines?

Thanks
 
T

Thomas A. Rowe

You can't have any line breaks.

You can store the value in a session object, then on the next page retrieve
the value from the session object.

<%
Session("TextFieldName") = Request.Form("TextFieldName")
%>

Then on page being redirected to use

<%=Session("TextFieldName")%>

to display the value or

TextField = Session("TextFieldName")

to use in a query, etc.



--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
T

Thomas A. Rowe

You can't have any line breaks.

You can store the value in a session object, then on the next page retrieve
the value from the session object.

<%
Session("TextFieldName") = Request.Form("TextFieldName")
%>

Then on page being redirected to use

<%=Session("TextFieldName")%>

to display the value or

TextField = Session("TextFieldName")

to use in a query, etc.

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
T

Thomas A. Rowe

You can't have any line breaks.

You can store the value in a session object, then on the next page retrieve
the value from the session object.


Session("TextFieldName") = Request.Form("TextFieldName")

Then on page being redirected to use

Session("TextFieldName")

to display the value or

TextField = Session("TextFieldName")

to use in a query, etc.

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
Top