JavaScript var to Cold Fusion var

2003-07-01 Thread Yinghong Li
Hi, I want to pass a variable from javascript to coldfusion cfquery tag. From what I read I can only do it through a url parameter or use form submit. In our case url option is out since our variable is very long. I want to try form submit. My question is when I use form submit there is any

RE: JavaScript var to Cold Fusion var

2003-07-01 Thread Barney Boisvert
www.audiencecentral.com -Original Message- From: Yinghong Li [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2003 2:17 PM To: CF-Talk Subject: JavaScript var to Cold Fusion var Hi, I want to pass a variable from javascript to coldfusion cfquery tag. From what I read I can only do it through a url

RE: JavaScript var to Cold Fusion var

2003-07-01 Thread Tony Walker
textarea id=txaLongString cols=80 name=longString rows=200 /textarea /span ô¿ô Tony -Original Message- From: Yinghong Li [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2003 2:17 PM To: CF-Talk Subject: JavaScript var to Cold Fusion var Hi, I want to pass a variable from

Re: JavaScript var to Cold Fusion var

2003-07-01 Thread James Blaha
var to Cold Fusion var Hi, I want to pass a variable from javascript to coldfusion cfquery tag. From what I read I can only do it through a url parameter or use form submit. In our case url option is out since our variable is very long. I want to try form submit. My question is when I use form

RE: JavaScript var to Cold Fusion var

2003-07-01 Thread Barney Boisvert
: Tony Walker [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2003 2:35 PM To: CF-Talk Subject: RE: JavaScript var to Cold Fusion var You could create a text area and stick the string in it and have it as the last thing on the page in a span that you hide: function buildLongString(parms

RE: JavaScript var to Cold Fusion var

2003-07-01 Thread Barney Boisvert
, 2003 2:17 PM To: CF-Talk Subject: JavaScript var to Cold Fusion var Hi, I want to pass a variable from javascript to coldfusion cfquery tag. From what I read I can only do it through a url parameter or use form submit. In our case url option is out since our variable is very long. I

RE: JavaScript var to Cold Fusion var

2003-07-01 Thread Tony Walker
Sorry... max length on a hidden field is 1024. ô¿ô Tony -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2003 2:52 PM To: CF-Talk Subject: RE: JavaScript var to Cold Fusion var that's what hidden form fields are for. no sense exposing

RE: JavaScript var to Cold Fusion var

2003-07-01 Thread Tony Walker
I don't know for sure but I believe hidden fields can only be 256 characters long. ô¿ô Tony -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2003 2:52 PM To: CF-Talk Subject: RE: JavaScript var to Cold Fusion var that's what hidden form fields

RE: JavaScript var to Cold Fusion var

2003-07-01 Thread Dave Watts
Sorry... max length on a hidden field is 1024. I've used more characters than that in a hidden field before. Out of curiosity, where'd you get that figure? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444

RE: JavaScript var to Cold Fusion var

2003-07-01 Thread Tony Walker
Can't remember - read it on a web page somewhere and assumed it was accurate - what is the max length if that is not right? ô¿ô Tony -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2003 3:27 PM To: CF-Talk Subject: RE: JavaScript var to Cold Fusion

RE: JavaScript var to Cold Fusion var

2003-07-01 Thread Jim Davis
-Original Message- From: Tony Walker [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2003 6:17 PM To: CF-Talk Subject: RE: JavaScript var to Cold Fusion var Sorry... max length on a hidden field is 1024. I doubt that's right (unless it's for a specific browser). I've passed

RE: JavaScript var to Cold Fusion var

2003-07-01 Thread Barney Boisvert
Development Engineer AudienceCentral [EMAIL PROTECTED] voice : 360.756.8080 x12 fax : 360.647.5351 www.audiencecentral.com -Original Message- From: Tony Walker [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2003 3:32 PM To: CF-Talk Subject: RE: JavaScript var to Cold Fusion var

RE: JavaScript var to Cold Fusion var

2003-07-01 Thread Dave Watts
I doubt there is one defined, it'd be up to each browser's implementation, but I'd imagine it's enormous. No reason not to make it that way that I can think of. I've never run into a limit on any form field's length (text, hidden or textarea) that I can recall. I've run into length

Re: JavaScript var to Cold Fusion var

2003-07-01 Thread S . Isaac Dealey
Hi, I want to pass a variable from javascript to coldfusion cfquery tag. From what I read I can only do it through a url parameter or use form submit. In our case url option is out since our variable is very long. I want to try form submit. My question is when I use form submit there is

client ram - was Re: JavaScript var to Cold Fusion var

2003-07-01 Thread S . Isaac Dealey
: 360.647.5351 www.audiencecentral.com -Original Message- From: Yinghong Li [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2003 2:17 PM To: CF-Talk Subject: JavaScript var to Cold Fusion var Hi, I want to pass a variable from javascript to coldfusion cfquery tag. From what I read I can

RE: JavaScript var to Cold Fusion var

2003-07-01 Thread Barney Boisvert
Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2003 4:16 PM To: CF-Talk Subject: RE: JavaScript var to Cold Fusion var I doubt there is one defined, it'd be up to each browser's implementation, but I'd imagine it's enormous. No reason not to make

JavaScript var to Cold Fusion var

2001-06-07 Thread Larry Junker
I know I have seen this in the past and can not for the life of me find it. I am having NO PROBLEM at all getting JS to evaluate to a CF variable, but how do I do it in reverse. I have JS variables that I would like to convert to CF. Also, I have a confirm in JS that upon a true value, I would

RE: JavaScript var to Cold Fusion var

2001-06-07 Thread Dan G. Switzer, II
var to Cold Fusion var I know I have seen this in the past and can not for the life of me find it. I am having NO PROBLEM at all getting JS to evaluate to a CF variable, but how do I do it in reverse. I have JS variables that I would like to convert to CF. Also, I have a confirm in JS

Re: JavaScript var to Cold Fusion var

2001-06-07 Thread Aaron Rouse
: JavaScript var to Cold Fusion var I know I have seen this in the past and can not for the life of me find it. I am having NO PROBLEM at all getting JS to evaluate to a CF variable, but how do I do it in reverse. I have JS variables that I would like to convert to CF. Also, I have a confirm

RE: JavaScript var to Cold Fusion var

2001-06-07 Thread Ron Hornbaker
I know I have seen this in the past and can not for the life of me find it. I am having NO PROBLEM at all getting JS to evaluate to a CF variable, but how do I do it in reverse. I have JS variables that I would like to convert to CF. Also, I have a confirm in JS that upon a true value, I

RE: JavaScript var to Cold Fusion var

2001-06-07 Thread Nate Smith
Cold Fusion is run on the server and has no access to JS variables which are run on the users machine unless the JS variable is passed back to the server through a url or form variable. So if you are using JS to pass data back to CF you need a page submission. Does that help? - Nate Smith,

RE: JavaScript var to Cold Fusion var

2001-06-07 Thread Larry Junker
Yes - Thanks to all who replied. -Original Message- From: Nate Smith [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 07, 2001 9:33 AM To: CF-Talk Subject: RE: JavaScript var to Cold Fusion var Cold Fusion is run on the server and has no access to JS variables which are run

Re: JavaScript var to Cold Fusion var

2001-06-07 Thread Don Vawter
: Thursday, June 07, 2001 8:15 AM Subject: JavaScript var to Cold Fusion var I know I have seen this in the past and can not for the life of me find it. I am having NO PROBLEM at all getting JS to evaluate to a CF variable, but how do I do it in reverse. I have JS variables that I would like

RE: JavaScript var to Cold Fusion var

2001-06-07 Thread Dave Watts
I know I have seen this in the past and can not for the life of me find it. I am having NO PROBLEM at all getting JS to evaluate to a CF variable, but how do I do it in reverse. I have JS variables that I would like to convert to CF. Also, I have a confirm in JS that upon a true value,

RE: JavaScript var to Cold Fusion var

2001-06-07 Thread Bryan Love
: JavaScript var to Cold Fusion var I know I have seen this in the past and can not for the life of me find it. I am having NO PROBLEM at all getting JS to evaluate to a CF variable, but how do I do it in reverse. I have JS variables that I would like to convert to CF. Also, I have a confirm in JS

RE: JavaScript var to Cold Fusion var

2001-06-07 Thread Lee Fuller
Someone posted a javascript confirm script a few messages ago, and it was so clean, I wanted to save it.. but I erased it by mistake. Can you repost it.. whoever you are?? :) Thanks! Lee ~~ Structure your ColdFusion code with Fusebox.