The form on
http://www.takeupthechallenge.com/abc/ is guaranteed to
fail.
You have wrapped the submit button in a mailto: link. Either the form
will submit or the mailto will open an email client, or the user will
get an error - most likely the latter.
<a href="mailto:
[email protected]"><font face="Verdana<font
size="2">
</font></font> </a>
Should be
<input type="SUBMIT" value="Send to UK Outdoor Pusuits Co">
Delete the rest.
The email will be sent by the FrontPage extensions that process this
form (assuming the email transport is set up in the extensions).
For your specific question, the reason you are getting the 1 in the
field is because it is in the querystring.
http://www.ukopforms.co.uk/char_application.asp?p=The Name Goes
Herer%201&ChaI=28%202
The querystring is everything after the ?
p=The Name Goes Herer%201&ChaI=28%202
Translating and splitting onto 3 lines :
p=The Name Goes Herer 1
&
ChaI=28 2
So the box p will get "The Name Goes Herer 1" and ChaI will get "28 2"
(without the quotes).
I would have to see the actual code for the page to determine why both
boxes get the first value, but suspect you are using the same variable
somewhere for both. Using the link in your post, the page works
correctly - p goes into 2 places on the page (title and right box, ChaI
goes into left box.
The actual link would probably be
<a target="_blank"
href="
http://www.ukopforms.co.uk/char_application.asp?p=The Name Goes
Here&ChaI=28">
(Not sure if the space2 is relevant in the Charity ID, but assume it is
not.)
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.
http://www.rxs-enterprises.org/fp
FrontPage Support:
http://www.frontpagemvps.com/
The page is
http://www.takeupthechallenge.com/abc/
If you click the Make a booking tab you will see what I mean.
I have to use this as there are 150+ charities and only one form. The ChaI
(charity reference) is passed to an access DB to make the booking (for that
specific charity)