> Store changed fields in a database without doing a standard submit with a
> reload.
> 
> Or, if I can modify the form action to point to two different actions
> depending on which submit is pressed.

You could probably do both with some combination of the
generic 'button' input type and 'onclick' event, e.g.

<input type="button" name="submit1" id="submit1" value="Submit 1"
onclick="thisForm.action='index.cfm?action=submit1'; thisForm.submit();" />

<input type="button" name="submit2" id="submit2" value="Submit 2"
onclick="thisForm.action='index.cfm?action=submit2'; thisForm.submit();" />

Maybe do the first thing (submit info without current page reloading)
by transferring everything to another window that closes itself - not
sure about that though.

hth,

- Gyrus

~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- [EMAIL PROTECTED]
work: http://www.tengai.co.uk
play: http://www.norlonto.net
- PGP key available
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to