Hello All,<br><br> I am trying to incorporate at least two submit buttons<br>(input type=image) on a shopping cart page I am building to submit the info thru a form.<br>I need for each one to specify an action value.<br><br>I can use the hidden field to pass the action value,<br>but this works for only one image submit button on a page.<br><br>My code so far:<br><cfform action="#thisPage##queryString#do=action&shortname=#url.shortname#"><br><br><INPUT TYPE="image" NAME="updatebutton" SRC="images/shop_updateprice.gif" WIDTH="97" HEIGHT="31" BORDER="0"><br><INPUT TYPE="hidden" NAME="action" VALUE="updateprice"><br><br><INPUT TYPE="image" NAME="addtobutton" SRC="images/shop_addtocart.gif" WIDTH="97" HEIGHT="31" BORDER="0"><br><INPUT TYPE="hidden" NAME="action" VALUE="addtobasket"><br><br>Thanks in advance..