Filling In Form via URL

A

Arne Beruldsen

I have a short registration screen. Via a Form...there are five text
boxes...3 of which I would like to automically fill in via the URL which I'm
directly from an application I developed.

I've been told...the information can be provided by using something similar
to this:
www.mysite.com/registration.htm?xxx=Name

What I can't figure out is what the text box is called.

Any ideas
 
R

Ronx

In code view, the text box will be similar to
<input type="text" width="20" name="T1">
Find the text box you are referring to in code view, (in FP2003 switch
to Split view, highlight the text box, and it will be highlighted in
the code) and read the name.
You will need JavaScript to populate the text box from the URL
querystring.
 

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