Click here to Skip to main content
Licence CPOL
First Posted 1 Aug 2000
Views 265,009
Downloads 762
Bookmarked 20 times

Specifying multiple actions from a single Form

By | 1 Aug 2000 | Article
A simple way to send the data from a single form to different pages, depending on which 'submit' button the user chooses

Introduction

In writing the Self-posting scripts I needed a way to allow the user to send their HTML to either the next page for processing, or to a preview page so they could check first. Basically I wanted 2 "submit" buttons on a single form, but there seemed no obvious way to do it. After asking around and (gasp!) reading the docs I came across a simple method that I hope will save someone else half a day of messing around.

The Problem

Say I have a form such as below:

Screenshot - form.png

We want Button1 to send the data to one page, and Button2 to send it to a completely different page. Your <form> tag specifies the action to take when the submit button is pressed - but we can only specify a single action.

A Solution

One way to get around this is to handle each button's OnClick event and set the "action" for the form dynamically:

<!-- create the form -->
<form name="Form1" method="post">

<!-- Add the data entry bits -->
Your Name <input type="text" name="text1" size="10" /><br />

<!-- Add some buttons -->
<INPUT type="button" value="Button1" name=button1 onclick="return OnButton1();">
<INPUT type="button" value="Button2" name=button2 onclick="return OnButton2();">

<!-- close the form -->
</form>

Our button click handlers for Button1 and Button2 would look like the following:

<script language="Javascript">
<!--
function OnButton1()
{
    document.Form1.action = "Page1.aspx"
    document.Form1.target = "_blank";    // Open in a new window
    document.Form1.submit();             // Submit the page
    return true;
}

function OnButton2()
{
    document.Form1.action = "Page2.aspx"
    document.Form1.target = "_blank";    // Open in a new window
    document.Form1.submit();             // Submit the page
    return true;
}
-->
</script>
<noscript>You need Javascript enabled for this to work</noscript>

Where Page1.aspx should be called when Button1 is pressed, and Page2.aspx called when Button2 is pressed.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Chris Maunder

Founder
The Code Project
Canada Canada

Member

Follow on Twitter Follow on Twitter
Google+
Chris is the Co-founder, Administrator, Architect, Chief Editor and Shameless Hack who wrote and runs The Code Project. He's been programming since 1988 while pretending to be, in various guises, an astrophysicist, mathematician, physicist, hydrologist, geomorphologist, defence intelligence researcher and then, when all that got a bit rough on the nerves, a web developer. He is a Microsoft Visual C++ MVP both globally and for Canada locally.
 
His programming experience includes C/C++, C#, SQL, MFC, ASP, ASP.NET, and far, far too much FORTRAN. He has worked on PocketPCs, AIX mainframes, Sun workstations, and a CRAY YMP C90 behemoth but finds notebooks take up less desk space.
 
He dodges, he weaves, and he never gets enough sleep. He is kind to small animals.
 
Chris was born and bred in Australia but splits his time between Toronto and Melbourne, depending on the weather. For relaxation he is into road cycling, snowboarding, rock climbing, and storm chasing.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 5 PinmemberMember 816844011:09 17 Aug '11  
GeneralOnButton1 command to visit url+formvalue PinmemberMember 77028376:16 24 Feb '11  
GeneralThanks Pinmemberbeaudetious18:12 6 Jan '11  
GeneralForm submit to server PinmemberAjay Kale New20:41 18 Oct '10  
Questionis there anyway to send data with this multiple actions on a single form? Pinmemberalidabiri18:03 11 May '08  
Questionone form allowing one of two actions to occur based on field validation PinmemberQesaf15:52 14 Aug '07  
Generalmultiple actions from a single Form: improvement Pinmemberil_betto705:22 26 Apr '07  
GeneralYet another Thank You PinmemberMember #382276410:01 13 Feb '07  
Thanks, Chris, for spending that 1/2 day of messing around, and sharing the results so I didn't have to spend the same 1/2 day. You solved my problem in 5 minutes.
GeneralMultiAction with ASP [modified] PinmemberChamark9:51 1 Jun '06  
GeneralPlease help, related, but not quite the same Pinmemberskorpiius8:47 13 Jan '06  
GeneralLet me restate Pinmemberskorpiius8:54 13 Jan '06  
Generaljavacript version needed. Pinmembertrix12109:49 3 Mar '05  
GeneralBetween pages PinsussAnonymous19:23 18 Nov '04  
GeneralMultiple Actions from one form, another question PinsussKeith Sarver5:10 28 Apr '04  
GeneralRe: Multiple Actions from one form, another question Pinmemberiamari7:35 27 Mar '05  
Generalsubmit one message to many message boards Pinmembertgopala_krishna5:04 26 Jan '04  
General2 Actions 1 form PinsussBrad Heyse7:22 15 Jul '03  
Questionhow to write dynamically page at a specific location Pinmemberfaad22:29 3 Apr '03  
Generalone button PinsussWebgirljudi11:29 3 Feb '03  
GeneralRe: one button PinadminChris Maunder12:01 3 Feb '03  
GeneralRe: one button PinsussAnonymous15:55 29 Apr '04  
GeneralRe: one button PinmemberHidrogeno10:51 11 Apr '08  
GeneralThanks Chris, solved another problem of mine! Pinmembermwilliamson17:38 23 Dec '02  
GeneralThanks Chris PinmemberNick Parker4:27 30 Jul '02  
Generaltwo actions from the same form PinsussAnonymous2:50 24 Jul '02  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120529.1 | Last Updated 2 Aug 2000
Article Copyright 2000 by Chris Maunder
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid