Re: Form submission issue

2008-08-20 Thread Karan Joshi
Thank you all. I managed to sort it out. I tried various methods to solve the problem, but the hidden field method worked out best for me. THanks ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to

Form submission issue

2008-08-18 Thread Karan Joshi
Hi I want to submit a form in IE6 using the Enter key. input type=submit name=submitSearchGeneral class=form-submitBtn value=Search I am using to StructKeyExists tag to check if the form has been submitted cfif StructKeyExists(FORM,submitSearchGeneral) It works fine with Firefox but doesn't

RE: Form submission issue

2008-08-18 Thread Andrew Scott
-Original Message- From: Karan Joshi [mailto:[EMAIL PROTECTED] Sent: Monday, 18 August 2008 4:49 PM To: CF-Talk Subject: Form submission issue Hi I want to submit a form in IE6 using the Enter key. input type=submit name=submitSearchGeneral class=form-submitBtn value=Search I am using

Re: Form submission issue

2008-08-18 Thread James Holmes
code with no sensitive data or code, might help some more. By default enter/return is acceptable under IE... -Original Message- From: Karan Joshi [mailto:[EMAIL PROTECTED] Sent: Monday, 18 August 2008 4:49 PM To: CF-Talk Subject: Form submission issue Hi I want to submit a form

Re: Form submission issue

2008-08-18 Thread Charlie Griefer
, might help some more. By default enter/return is acceptable under IE... -Original Message- From: Karan Joshi [mailto:[EMAIL PROTECTED] Sent: Monday, 18 August 2008 4:49 PM To: CF-Talk Subject: Form submission issue Hi I want to submit a form in IE6 using the Enter key

Re: Form submission issue

2008-08-18 Thread Dominic Watson
/return is acceptable under IE... -Original Message- From: Karan Joshi [mailto:[EMAIL PROTECTED] Sent: Monday, 18 August 2008 4:49 PM To: CF-Talk Subject: Form submission issue Hi I want to submit a form in IE6 using the Enter key. input type=submit name

Re: Form submission issue

2008-08-18 Thread Michael Fisher
You can try this on your cfinput...confirmed working on IE7... onKeyDown=if(Key.isDown(Key.ENTER)) {submitForm()} ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: Form submission issue

2008-08-18 Thread Will Tomlinson
Hi I want to submit a form in IE6 using the Enter key. input type=submit name=submitSearchGeneral class=form-submitBtn value=Search I ran into this issue myself. IE6 - jeez, thanks Microshaft! Bobby H. taught me yet another way to check for form submissions. cfif cgi.request_method eq

RE: Form submission issue

2008-08-18 Thread Bobby Hartsfield
Subject: Re: Form submission issue And to double-piggy-back on Charlie and James, you can also check form.fieldnames which only exists after a form is submitted. I prefer the hidden field approach but all those methods are good ;) Dominic 2008/8/18 Charlie Griefer [EMAIL PROTECTED]: to piggyback