Re: submitting a form

2008-06-28 Thread Claude Schneegans
Have you tried submitting the form with the same values? Same browser/OS? I haver noticed that Opera has a check box in the alert: Stop executing scripts in this page. This is at least one possibility. -- ___ REUSE CODE! Use custom tags; See

RE: submitting a form

2008-06-27 Thread Dave Francis
Just a thought: Why not do the checks in the form statement with an 'onSubmit='? Then you don't care how they submit it? (Another way to submit a form is to create your own page any way you want to, just leave the action=www.yourpage.cfm) -Original Message- From: Claude Schneegans

RE: submitting a form

2008-06-27 Thread Brad Wood
A bot? It is possible to spoof anything in an HTTP request to your server. For instance, I could fire up MS Fiddler and build an HTTP POST that looked just like it came from your form but leave whatever fields I wanted blank. Don't ever trust client-side anything. ~Brad -Original

Re: submitting a form

2008-06-27 Thread Claude Schneegans
Why not do the checks in the form statement with an 'onSubmit='? Well, good question. The main reason is that all forms in the system are independant and may have their own onSubmit. But they must all have this checkInput () procedure. The submit button, on the other hand is in a common

Re: submitting a form

2008-06-27 Thread Claude Schneegans
A bot? No way, the form was filled by a real person, all the rest of the information in the field make sense, including the mail address of the submitter. It is a membership registration form in an association. It is possible to spoof anything in an HTTP request to your server. Of course,

Re: submitting a form

2008-06-27 Thread Sonny Savage
Maybe there's an issue with the JS? Have you tried submitting the form with the same values? Same browser/OS? Edward A Savage Jr - Sonny Senior Software Engineer Creditdiscovery, LLC An appeaser is one who feeds a crocodile, hoping it will eat him last. ~ Sir Winston Churchill On Fri, Jun 27,

Re: submitting a form

2008-06-27 Thread rex
Claude Schneegans wrote: It is possible to spoof anything in an HTTP request to your server. Of course, but not in this case. How do you know that the submission was from your page? Do you check for the http referer on your action page? Like Brad Wood and Dave Francis said, someone

RE: Submitting a form inside of cfdiv

2008-02-01 Thread Dave Watts
cfform name cfinput type=text yada cfinput type=text yada cfinput type=text cfdiv cfform You can't nest forms. Dave Watts, CTO, Fig Leaf Software ~| Adobe® ColdFusion® 8 software 8 is the most important

Re: Submitting a form inside of cfdiv

2008-02-01 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
Does anyone know if there is an issue where you place a cfdiv in a cfform with with another cfform in the cfdiv that would not allow the form to submit in the cfdiv. For Example: cfform name cfinput type=text yada cfinput type=text yada cfinput type=text cfdiv cfform add

Re: Submitting a form inside of cfdiv

2008-02-01 Thread Sam Farmer
If you have multiple cfforms and cfdivs on a page make sure to give each one distinct names and things should work fine. Otherwise you will get some interesting behavior. On Feb 1, 2008 11:41 AM, Dave Watts [EMAIL PROTECTED] wrote: cfform name cfinput type=text yada cfinput type=text

Re: Submitting a form inside of cfdiv

2008-01-10 Thread Cutter (CFRelated)
Well, that does suck. 'The LiveDocs strike again...' So I guess the best thing to do is write your own async submit, then push the response to the container in the callback. This is actually insanely easy. Here's an example I had whipped up for my CF8 Ajax preso, which uses a combination of

Re: Submitting a form inside of cfdiv

2008-01-10 Thread Steve Sequenzia
Yeah, I got it working by changing my cfform to a normal html form. That makes sense, thanks Azadi for the insight. that is only true for CFFORM tag, not FORM tag read here: http://www.coldfusionjedi.com/index. cfm/2007/8/5/Reminder-about-forms-and-ColdFusion-8-Ajax-Containers ---

Re: Submitting a form inside of cfdiv

2008-01-09 Thread Azadi Saryev
i think you will find that using form ... instead of cfform ... (or is it the other way around?) will do the trick. using one submits the form to cfdiv, the other replaces the main page --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com

Re: Submitting a form inside of cfdiv

2008-01-09 Thread Cutter (CFRelated)
Either way really. Here's the blurb out of the LiveDocs The ColdFusion Ajax container tags, cfdiv, cflayoutarea, cfpod, and cfwindow, automatically submit any forms that they contain asynchronously. When the form is submitted, the result returned by the action page replaces the contents of the

Re: Submitting a form inside of cfdiv

2008-01-09 Thread Azadi Saryev
that is only true for CFFORM tag, not FORM tag read here: http://www.coldfusionjedi.com/index.cfm/2007/8/5/Reminder-about-forms-and-ColdFusion-8-Ajax-Containers --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Cutter (CFRelated) wrote: Either way really. Here's the blurb out of the

Re: Submitting a Form through email

2005-01-10 Thread Mark Drew
What is the code in the html? MD On Mon, 10 Jan 2005 08:14:17 -0500, Chad McCue [EMAIL PROTECTED] wrote: I have an email being sent out to expired accounts that is a small form to see if they would like to renew their account. The form that is in the email contains two questions and a

Re: Submitting a Form through email

2005-01-10 Thread Chad McCue
[EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, January 10, 2005 8:37 AM Subject: Re: Submitting a Form through email What is the code in the html? MD On Mon, 10 Jan 2005 08:14:17 -0500, Chad McCue [EMAIL PROTECTED] wrote: I have an email being sent out to expired

Re: Submitting a Form through email

2005-01-10 Thread Michael Traher
Can not see an obvious problem. I would change the target page to new one called test.cfm that only contains the code cfdump var=#form# and see if that works. If it does then you need to start delving into the code that runs between index.cfm and your 'reply90day' fuse code. Since this is

RE: Submitting a Form through email

2005-01-10 Thread Robert Bailey
PROTECTED] Sent: Monday, January 10, 2005 8:41 AM To: CF-Talk Subject: Re: Submitting a Form through email form name=myform action=#request.sitename#/index.cfm?Fuseaction=Reply90dayemail method=post input type=hidden name=BuyersID value=#CurrAcctID# table border=0 cellpadding=0 cellspacing=0

RE: Submitting a Form through email

2005-01-10 Thread Micha Schopman
This is prohibited due to security. Email clients block this. What you can do is provide the client a link, which needs to be clicked to renew their account. Keep in mind to hash/encrypt the id of the client. I wouldn't like it if someone could change the id in the address bar to renew my

RE: Submitting a form only once, iow, preventing impatient user double clicks.

2002-04-18 Thread Charles Nahm
-Original Message- From: Angel Stewart [mailto:[EMAIL PROTECTED]] Oh! Oh! I know this one! I know this one! Someone helped me with this just the other day :) Thank you to Angel, Diana, Justin, Thane, Larry and [EMAIL PROTECTED] Unbelievably fast helpful people on this list. Charles

RE: Submitting a form only once, iow, preventing impatient user d ouble clicks.

2002-04-18 Thread Ryan Pieszak
: Thursday, April 18, 2002 10:21 AM To: CF-Talk Subject: RE: Submitting a form only once, iow, preventing impatient user double clicks. -Original Message- From: Angel Stewart [mailto:[EMAIL PROTECTED]] Oh! Oh! I know this one! I know this one! Someone helped me with this just the other

RE: Submitting a form only once, iow, preventing impatient user d ouble clicks.

2002-04-17 Thread Ron Hornbaker
, BookCrossing.com BOOKS JUST WANNA BE FREE! http://BookCrossing.com -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 17, 2002 10:37 AM To: CF-Talk Subject: RE: Submitting a form only once, iow, preventing impatient user d ouble clicks. Use

RE: Submitting a form only once, iow, preventing impatient user d ouble clicks.

2002-04-17 Thread Matt Robertson
Dave, I'm doing exactly what you are this morning. Of the three examples that were given early on in the thread, I've settled on this one so far: INPUT TYPE=Button NAME=Submit VALUE=Submit Form onclick=javascript:this.value='Please Wait';this.disabled=1;document.forms[0].submit() On my

RE: Submitting a form only once, iow, preventing impatient user d ouble clicks.

2002-04-17 Thread Dave Carabetta
This should work to maintain type=submit: input type=submit name=submitted value=Generate Report onClick=if(this.value == 'Generate Report'){ this.value='Running Report...';return true;}else{return false}; class=submit (remove line wraps in the onClick parameter) Ron Hornbaker Co-Founder,

Re: submitting a form with out a button? unload

2001-11-12 Thread Critz
oi Paul!! a href=# onClick=document.forms[0].submit()Click Here to Submit./a -- Critter, MMCP Certified ColdFusion Developer Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion - Monday, November 12, 2001, 11:37:44 AM, you wrote: PI i am sure

RE: submitting a form with out a button? unload

2001-11-12 Thread Paul Ihrig
body onload=document.forms[0].submit(); found it -paul -Original Message- From: Paul Ihrig [mailto:[EMAIL PROTECTED]] Sent: Monday, November 12, 2001 11:38 AM To: CF-Talk Subject: submitting a form with out a button? unload i am sure this has been done a lot but cant find it. how

RE: submitting a form with out a button? unload

2001-11-12 Thread Bryan Love
Actually, it sounds like this would be better fixed by changing your architecture. If you need to retain form information then stack the action page on top of your form page. That way you can fall through and re-display the form if validation fails, or you can insert into the db and cflocate if