I oughta know this:

When using a standard HTML form button:

<input name="SubmitME" type="submit" id="SubmitME" value="Submit">

You can then check:

<cfif IsDefined("FORM.SubmitME")>

..and direct your app off wherever you need to go.


However, I'm using an IMAGE for the submit button:

<input name="SubmitME" type="image" id="SubmitME" value="Submit"
src="submit.gif">

When doing that, the form variable isn't getting passed along, so using:

<cfif IsDefined("FORM.SubmitME")>

..returns false instead of true.


How can I get around this?

Thanks

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
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

Reply via email to