Re: CFQUERY update Firefox wierdness

2011-04-19 Thread Dan Blickensderfer
I checked and it's turned off. This is happening from multiple computers with Firefox. Any other thoughts? -Original Message- From: Matt Quackenbush Sent: Tuesday, April 19, 2011 12:20 AM To: cf-talk Subject: Re: CFQUERY update Firefox wierdness Wild guess: Firebug is turned

Re: CFQUERY update Firefox wierdness

2011-04-19 Thread Kym Kovan
On 19/04/2011 8:46 PM, Dan Blickensderfer wrote: I checked and it's turned off. This is happening from multiple computers with Firefox. Any other thoughts? in that case turn it on and look at what the browser is sending... -- Yours, Kym Kovan mbcomms.net.au

Re: CFQUERY update Firefox wierdness

2011-04-19 Thread Dan Blickensderfer
not referring to a url it reloads the same page. This was driving me crazy. Dan -Original Message- From: Kym Kovan Sent: Tuesday, April 19, 2011 7:23 AM To: cf-talk Subject: Re: CFQUERY update Firefox wierdness On 19/04/2011 8:46 PM, Dan Blickensderfer wrote: I checked and it's turned off

Re: CFQUERY update Firefox wierdness

2011-04-18 Thread Al Musella, DPM
Hi I never seen that.. but the first thing I would look at is to set up a way to see how many times that action page is run. Perhaps insert a GetTickCount counter into a log file when the action page is run.. First look to see how it works in IE, then try firefox. At 06:55 PM 4/18/2011,

Re: CFQUERY update Firefox wierdness

2011-04-18 Thread Azadi Saryev
cfquery tag has absolutely nothing to do with any browser - it is executed by cf on the server side. i would check your page's html and javascript instead - that's where browser differences can come into play. how do you submit your form to add item to cart - ajax or regular form submit? how

Re: CFQUERY update Firefox wierdness

2011-04-18 Thread Matt Quackenbush
Wild guess: Firebug is turned on and is adding a second click to the flow. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

re: cfquery UPDATE

2003-04-03 Thread FlashGuy
Hi, Whats wrong with the syntax below? When I change a field and click the submit to run the code below it adds the field to the existing field in the database. I want to replace it. For example the password is test. Using my template I enter in xxx click the submit. When I check the database

re: cfquery UPDATE

2003-04-03 Thread Brook Davies
where usrID=#FORM.UserID# (your missing the name of the field in the where clause... At 12:16 PM 4/3/2003 -0500, you wrote: Hi, Whats wrong with the syntax below? When I change a field and click the submit to run the code below it adds the field to the existing field in the database. I want

RE: cfquery UPDATE

2003-04-03 Thread Ryan Emerle
03, 2003 12:17 PM To: CF-Talk Subject: re: cfquery UPDATE Hi, Whats wrong with the syntax below? When I change a field and click the submit to run the code below it adds the field to the existing field in the database. I want to replace it. For example the password is test. Using my template I

Re: cfquery UPDATE

2003-04-03 Thread Bryan Stevenson
PROTECTED] Sent: Thursday, April 03, 2003 9:16 AM Subject: re: cfquery UPDATE Hi, Whats wrong with the syntax below? When I change a field and click the submit to run the code below it adds the field to the existing field in the database. I want to replace it. For example the password is test

Re: cfquery UPDATE

2003-04-03 Thread FlashGuy
-vancouverisland.com - Original Message - From: FlashGuy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, April 03, 2003 9:16 AM Subject: re: cfquery UPDATE Hi, Whats wrong with the syntax below? When I change a field and click the submit to run the code below it adds

Re: cfquery UPDATE

2003-04-03 Thread Randell B Adkins
- Vancouver Island ColdFusion Users Group Founder Director www.cfug-vancouverisland.com - Original Message - From: FlashGuy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, April 03, 2003 9:16 AM Subject: re: cfquery UPDATE Hi, Whats wrong

Re: cfquery UPDATE

2003-04-03 Thread FlashGuy
PROTECTED] Sent: Thursday, April 03, 2003 9:16 AM Subject: re: cfquery UPDATE Hi, Whats wrong with the syntax below? When I change a field and click the submit to run the code below it adds the field to the existing field in the database. I want to replace

Re: cfquery UPDATE

2003-04-03 Thread Bryan Stevenson
- From: FlashGuy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, April 03, 2003 9:56 AM Subject: Re: cfquery UPDATE WTF Here is my code: cfquery name=UpdateUser datasource=#Request.App.dsn# UPDATE login SET Username=cfqueryparam value=#FORM.Username# cfsqltype

Re: cfquery UPDATE

2003-04-03 Thread Jeff Garza
with the original username... HTH, Jeff Garza - Original Message - From: FlashGuy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, April 03, 2003 10:56 AM Subject: Re: cfquery UPDATE WTF Here is my code: cfquery name=UpdateUser datasource=#Request.App.dsn# UPDATE login SET

Re: cfquery UPDATE

2003-04-03 Thread FlashGuy
] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, April 03, 2003 9:56 AM Subject: Re: cfquery UPDATE WTF Here is my code: cfquery name=UpdateUser datasource=#Request.App.dsn# UPDATE login SET Username=cfqueryparam value=#FORM.Username# cfsqltype=CF_SQL_LONGVARCHAR

Re: cfquery UPDATE

2003-04-03 Thread FlashGuy
ColdFusion Users Group Founder Director www.cfug-vancouverisland.com - Original Message - From: FlashGuy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, April 03, 2003 9:56 AM Subject: Re: cfquery UPDATE WTF Here is my code: cfquery name=UpdateUser datasource

RE: cfquery UPDATE

2003-04-03 Thread Ryan Emerle
Eh.. if you are talking about character masking, you can use input type=password .. . Otherwise, i don't understand the question :) -R -Original Message- From: FlashGuy [mailto:[EMAIL PROTECTED] Sent: Thursday, April 03, 2003 1:13 PM To: CF-Talk Subject: Re: cfquery UPDATE I have

RE: CFQUERY Update......

2001-05-25 Thread Adkins, Randy
Does it return an error in CF? Some thoughts: Make sure that the ID field is a NUMBER field and the ID # is unique. -Original Message- From: JL [mailto:[EMAIL PROTECTED]] Sent: Friday, May 25, 2001 9:46 AM To: CF-Talk Subject: CFQUERY Update.. Hi all, I am trying to update a

Re: CFQUERY Update......

2001-05-25 Thread Jon Hall
I have seen this behavior before under heavy load without using transactions, but it did not happen every time like you are seeing. An update will of course execute but not change the data if the where clause does not match anything. If you can copy the same query into Query Analyzer that shows