I saw this in your code:

<input type="button" name="submit" value="Submit Order">


It should be

<input type="submit" name="submit" value="Submit Order">


Type="button" will not submit the form.  Only tpe="submit" will do so.

-Patti

Keith Taylor wrote:

> Hi all,
> 
> This is probably a CF101 question, but I am missing it. I'm making an order
> form where each item is laid out in a table row
> with:itemNO,desc,price,quantity (input/text box). This is not a shopping cart.
> Just an order form for people who have an account. The items ordered will be
> sent to my client as an email, then also posted on the action page for the
> site visitor ("you ordered x,y,z"). Each row pulls the item number, desc, and
> price for display, then has an input/text box for the quantity to be entered.
> I'm passing along the description and ID data as hidden variables which will
> help to identify each ordered item and also to display for the visitor on the
> action page.
> 
> When I test this, and try to hit the submit button, nothing happens. I suspect
> the problem is that each row has a formfield named 'quantity'. But how would
> this be handled alternately? I had originally had the input name for quantity
> to be <input name="prod#ItemID#">, but how then would I call this up on the
> resulting action page? And the email? The page in question is
> http://216.197.109.132/order.cfm .
> 
> Thank you in advance for any help you can provide!
> 
> Regards,
> Keith
> [EMAIL PROTECTED]
>            
> 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Reply via email to