Passing content of a text field to the next page

J

Jerry Manner

Hi

I am wondering if the following is possible:

A page contains a text field in which, manually, text can be placed.
Next to the text field there is a button. Clicking that button will
open another page.
I would like to see the text in the field on the top part on the second
page.

Is this possible, if so, how can I do it?

Regards
 
P

p c

Make your second page ASP, add the following line:

<% =request.querystring("frmfiledname" %> if the form method on the
first page is GET
Or
<% =request.form("frmfiledname" %> if the form method on the first page
is POST.

Make sure the form on first page submits to the correct filename e.g.
seconpage.asp.

....PC
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top