Also meant to say, the FORM.submit.x and FORM.submit.y comes from you having an image submit button. The values come from the point where you click.
Adrian http://www.adrianlynch.co.uk/ -----Original Message----- From: C S [mailto:[EMAIL PROTECTED] Sent: 28 January 2008 13:11 To: CF-Newbie Subject: Re: Java object error > I can that there is no ID1, ID2, Earnings1, Earnings2. > Instead I have ID: 57,70 and Earnings: 1234,5678. See Adrian's response about how to name your form fields. He is right on target. > I don't know if it matters but I constructed the form inside table > tags. It is easier to do the opposite. ie Construct the table inside the form tags. <form ...> <table> <tr>.... </tr> </table> </form> > Also, I had a heck of a time getting that submit button to display > under the form instead of above it Put the button inside one of the table cells. Then it will be easy to align. ... <tr><td colspan="3"> <input name="Submit" type="image" src="/images/shared/buttons/submit.gif" alt="Submit" border="0" value="Save"> </td> </tr> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive: http://www.houseoffusion.com/groups/CF-Newbie/message.cfm/messageid:3280 Subscription: http://www.houseoffusion.com/groups/CF-Newbie/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.15
