|
Posted by Ove on September 17, 2004, 3:36 am
Please log in for more thread options
Hello I'm trying to get the user of an evaluation for to get forwarded
to a new page after the form is completed and the send button is
pushed.
How can I do that?
Don't have to much knowledge about html.
|
|
Posted by chris_develop on September 17, 2004, 11:20 am
Please log in for more thread options
Hi..
If the standard syntax for a form in HTML (as per w3.org) is:
<FORM action="http://somesite.com/prog/adduser" method="post">
<P>
First name: <INPUT type="text" name="firstname"><BR>
Last name: <INPUT type="text" name="lastname"><BR>
email: <INPUT type="text" name="email"><BR>
<INPUT type="radio" name="sex" value="Male"> Male<BR>
<INPUT type="radio" name="sex" value="Female"> Female<BR>
<INPUT type="submit" value="Send"> <INPUT type="reset">
</P>
</FORM>
Then on pushing Submit, you will be redirected to
http://somesite.com/prog/adduser
Edit accordingly, :-)
Chris.
|
|
Posted by Ove on September 20, 2004, 6:09 am
Please log in for more thread options Hello
Thank you it works!
Do you know if it is difficult to get the result exported into a excel sheet?
Ove
chris_develop@hotmail.com (chris_develop) wrote in message
> Hi..
>
> If the standard syntax for a form in HTML (as per w3.org) is:
>
> <FORM action="http://somesite.com/prog/adduser" method="post">
> <P>
> First name: <INPUT type="text" name="firstname"><BR>
> Last name: <INPUT type="text" name="lastname"><BR>
> email: <INPUT type="text" name="email"><BR>
> <INPUT type="radio" name="sex" value="Male"> Male<BR>
> <INPUT type="radio" name="sex" value="Female"> Female<BR>
> <INPUT type="submit" value="Send"> <INPUT type="reset">
> </P>
> </FORM>
>
> Then on pushing Submit, you will be redirected to
http://somesite.com/prog/adduser >
> Edit accordingly, :-)
>
>
> Chris.
|
|
Posted by Tim on September 17, 2004, 11:18 pm
Please log in for more thread options On 17 Sep 2004 02:36:52 -0700,
ovemal@yahoo.no (Ove) posted:
> Hello I'm trying to get the user of an evaluation for to get forwarded
> to a new page after the form is completed and the send button is
> pushed.
> How can I do that?
>
> Don't have to much knowledge about html.
That's handled by whatever script processes the form. So you need to ask
someone about scripting, not HTML (i.e. it's another news group that'll
have the answers you want). Try looking up the website that has the NMS
scripts (much improved replacements for the Matt Wright form mail). It's
got various scripts, and information about them.
--
If you insist on e-mailing me, use the reply-to address (it's real but
temporary). But please reply to the group, like you're supposed to.
This message was sent without a virus, please delete some files yourself.
|
| Similar Threads | Posted | | Forward and Back buttons? | May 14, 2005, 8:40 am |
| Help with a Form page | February 10, 2005, 7:49 am |
| Multiple Page Form | September 8, 2004, 6:46 am |
| Re: print form value on the web page etc? | January 23, 2008, 5:47 am |
| Validation of ASP.Net page - name attribute of form tag | May 25, 2006, 10:14 am |
| How to keep | July 31, 2007, 2:49 pm |
| html contact form on front page | January 19, 2007, 11:52 pm |
| receipt of form values by an HTML page | October 10, 2007, 2:56 pm |
| Need help creating a "Click absolutely ANYWHERE on this page" link for an HTML page with no content | February 7, 2007, 5:40 pm |
| Activating parent page link from 'child page' - revised | June 3, 2005, 11:30 am |
|