Link to home
Start Free TrialLog in
Avatar of jollymon6672
jollymon6672Flag for United States of America

asked on

Changing submit form object to an image and maintaining results

I would like to change a CF submit input to a type of image but retain the submit value for the query. any ideas?
Avatar of Nathan Stanford Sr
Nathan Stanford Sr
Flag of United States of America image

<form action="nextfile.cfm" method="post">

Form1:<input type="text" name="form1" size="25" maxlength="25"><br>
Form2:<input type="text" name="form2" size="25" maxlength="25"><br>
<br>
<input type="image" src="/minifusebox.gif" onclick="submit();"><br>
<br>
<input type="hidden" name="SUBMIT" value="GoSubmitValue">
</form>


Just think I did all this work and you are only giving out 1 point.

Nathan Stanford
www.nsnd.com
ColdFusion Tips Plus weekly e-ZINE
Avatar of jollymon6672

ASKER

Sorry about the points, I didn't quite understand how the point system worked. It was definitly worth more than that. Thanks for your help.
Well did this solve your problem... If so grade it...

If I answered your question that is..

Also grade according to how well the answer for the question you asked... Just thought I would let you know since your new.
Adjusted points from 1 to 10
It was a solution for a single submit but I have multiple submits and it seems to cancel each other out. Any ideas? Thank you for all your help.
ASKER CERTIFIED SOLUTION
Avatar of Dain_Anderson
Dain_Anderson

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Xavi053000
Xavi053000

Only type this:

<input type="image" src="image.gif" value="submit" border="0">

and works in both navigators.