Help with passing values via url hyperlinks

2000-07-25 Thread AustralianAccommodation.com Pty. Ltd.
I have 7 buttons on a page each relates to a separate application form so when I click on a button it passes to the appropriate application form each button will have the hyper link a href="formpage.cfm?button=value" with each form have an independent value to identify the different forms so

Re: Help with passing values via url hyperlinks

2000-07-25 Thread Heather Haindel
Here's the basic idea... URL: a href="formpage.cfm?button=value" action page: if url.button=optiona do this stuff if url.button=optionb do different stuff else do some default thing If the forms are basically the same, you can just set the form's action attribute and use the same

Re: Help with passing values via url hyperlinks

2000-07-25 Thread Deanna L. Schneider
It sounds like what you really want to do is name your submit buttons like so: input type="submit" value="Submit this form" name="form1" Each submit button would have a different name. Then on your action page (formpage.cfm) you would do something like so: cfif isdefined("form.form1") do your