Re: iframe cfscript getting parent form field values

2010-02-20 Thread Dan Blickensderfer
I have what I'm asking working but it passes everything via url variables to the iframe but I'm afraid that I may run into url max length limitation. This is why I was hoping to get the form field values without passing them via the url. Here is what I have. This is the form page. func

RE: iframe cfscript getting parent form field values

2010-02-20 Thread lists
You could make this MUCH easier on yourself and just do a form POST into the iframe. Hekc, you could even use GET if you wanted to. Regardless, just target the iframe using JS then set hidden form fields to get passed in to. andy -Original Message- From: Andrew Scott [mailto:andr...@an

RE: iframe cfscript getting parent form field values

2010-02-20 Thread Andrew Scott
No, if you are doing what I think you are trying to do then your best bet is Ajax. Once the server has processed the request, the client (browser) has control of the final request. If you are looking at populating things before the client receives it then you could do something like this

Re: iframe cfscript getting parent form field values

2010-02-20 Thread Dan Blickensderfer
Can I set the form value to a cfset variable? - Original Message - From: "Andrew Scott" To: "cf-talk" Sent: Saturday, February 20, 2010 10:01 PM Subject: RE: iframe cfscript getting parent form field values > > No, > > Cfscript is server side scripting. You need to write javascript t

RE: iframe cfscript getting parent form field values

2010-02-20 Thread Andrew Scott
No, Cfscript is server side scripting. You need to write javascript to do this using document.all.form[0] -Original Message- From: Dan Blickensderfer [mailto:d...@blickensderfer.com] Sent: Sunday, 21 February 2010 1:40 PM To: cf-talk Subject: iframe cfscript getting parent form field

iframe cfscript getting parent form field values

2010-02-20 Thread Dan Blickensderfer
Hi everyone, I've ran into a problem and do not know if cfscript will allow this. I have a page that has an iframe and a form named eform with a half of dozen fields. I have a javascript function onblur on the last field to call another cf page (page2) through the iframe. I'm trying to get c

Re: Serious, intermittent problem with CF Web Service

2010-02-20 Thread Matthew Small
You can try running Process Monitor (http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx) while the application is in the bad state. Once you reproduce the error, check the log for the location that the app is trying to load the class and ensure it looks correct. If you don't see an

Re: Serious, intermittent problem with CF Web Service

2010-02-20 Thread Jochem van Dieten
On Sat, Feb 20, 2010 at 3:06 AM, Leon Miller-Out wrote: > To our great dismay, it appears that our ColdFusion 7 servers can't serve the > new API reliably. It works for about a day or so after restarting, then the > clients start getting errors like: > > Error: coldfusion.xml.rpc.CFCInvocationEx

Re: How much memory does CF8 really need?

2010-02-20 Thread Jochem van Dieten
On Thu, Feb 18, 2010 at 12:01 AM, Pete Ruckelshaus wrote: > I'm at the point where I have enough domains on separate shared hosting > accounts that I could combine them on a single virtual private server > account and save some money...well, a little money, but I would have more > control.  Would

E-commerce site session managment

2010-02-20 Thread David McCan
I get to redo an e-commerce site. We sell event photos. There are some issues now that were not as big of an issue 7 or 8 years ago when the site was created. For instance, viewing the site in multiple tabs or browsers. I am wondering how other people do e-commerce session management? This

Re: Where to encrypt - cf or db or both?

2010-02-20 Thread David McCan
>I want to encrypt billing information an ecommerce app. I know the argument >against storing it, and we are considering not storing it. But I just want >to explore options. > >So I can encrypt in cf with aes, or in sql server with a certificate and >triple des symmetric key, or both cf AND sql

Re: Validating that only .5 decimal gets through?

2010-02-20 Thread Kevan Stannard
Good catch Greg (clearly I was just testing everyone, right :). Yep, I like Jerry's answer too: On 20 February 2010 18:36, Greg Morphis wrote: > > > > That works unless you try something like 2.05 > > isValid : #isValid# > isValid : YES > but should fail > > > > On Sat, Feb 20, 2010 at 1: