want to have a way to upload text to an open page from an entry form on another page

G

Guest

i want to allow the web owner access to a form entry page... then i want
the text he enters to show up on another page..
how would i do this?


what i want to do is allow the web owner to be able to enter text somewhere
and have that show up on a different page ie read from the form. is this
possible?
 
M

Mike Mueller

JP

If you are using a form, create your own form handler to use
the values as you so desire. An example would be (Windows
host) for form.htm to have an action of results.asp.
Form.htm has a text box called Name. Results.asp could have
"Good afternoon, " and the name
example code:
<%
dim strName
strName = Request.Form("Name")
%>
<html><body>
Good afternoon <% =strName %>
</body></html>

------------------Mike-----------------------

jp wrote:
: i want to allow the web owner access to a form entry
: page... then i want the text he enters to show up on
: another page..
: how would i do this?
:
:
: what i want to do is allow the web owner to be able to
: enter text somewhere and have that show up on a different
: page ie read from the form. is this possible?
 
G

Guest

thanks mike..
i must apologize, i know nothing about html coding.. im using front page to
handle thie htm..
ill mess with it.. thanks for the info on how to start...

if you have any links that exaplin this better to a novice (like myself) id
appreciate it..
thanks
jp
 
R

Rick Budde

If this does not happen very frequently, you might want
to use the KISS principle and have the web owner email
you the text, input it and re-publish the site.

Only you can decide if it is worth your time to learn
coding to make it happen without your involvement.

Another option would be for the web owner to purchase and
learn Front Page.
 
G

Guest

thanks theres no simple way to do this or to find a place that has the code
that does this?
 
G

Guest

thanks chris.. will this work on front page 2000?

ive downloaded your software.. just not installed the add in or tried it out
till i was sure it would work with FP 2000

thanks
jp
 
C

Chris Leeds, MVP-FrontPage

sure it'll work. it doesn't require any specific editor or anything, it's
just that the instructions are from a FrontPage perspective. ;-)

hth

--
Chris Leeds,
Microsoft MVP-FrontPage

ContentSeed: great tool for web masters,
a fantastic convenience for site owners.
http://contentseed.com/
--
 

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