Variables in Java and Javascript

2000-10-18 Thread Gavin Myers
Hey people, New thing: I need to check if a certing browser has java enabled, and javascript can you set a variable in java or javascript and let it be read in cold fusion? this is what i'm thinking: Cfset javascript = 0 cfset java = 0 javacode put 1 into java /javacode javascript code put

RE: Variables in Java and Javascript

2000-10-18 Thread Patricia Lee
if Watts responds to this... one can always hope. -Patti -Original Message- From: Gavin Myers [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 18, 2000 11:07 AM To: CF-Talk Subject: Variables in Java and Javascript Hey people, New thing: I need to check if a certing browser has java

RE: Variables in Java and Javascript

2000-10-18 Thread Evan Lavidor
: Variables in Java and Javascript Hey people, New thing: I need to check if a certing browser has java enabled, and javascript can you set a variable in java or javascript and let it be read in cold fusion? this is what i'm thinking: Cfset javascript = 0 cfset java = 0 javacode put

RE: Variables in Java and Javascript

2000-10-18 Thread Aaron Johnson
browserhawk can catch enabled/disabled Java. http://www.browserhawk.com/products/bhawk/features.asp AJ -Original Message- From: Patricia Lee [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 18, 2000 11:33 AM To: CF-Talk Subject: RE: Variables in Java and Javascript The javascript

RE: Variables in Java and Javascript

2000-10-18 Thread Jason Powers
essage- From: Evan Lavidor [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 18, 2000 12:02 PM To: CF-Talk Subject: RE: Variables in Java and Javascript Don't know about Java, but this can't be done with JavaScript. CF is server side, and JavaScript is client side. By the time the JavaScript

RE: Variables in Java and Javascript

2000-10-18 Thread Simon Horwith
D]] Sent: Wednesday, October 18, 2000 12:22 PM To: CF-Talk Subject: RE: Variables in Java and Javascript What i've been looking into is cfwddx, i think its my only hope: cfset javascript_verify = 0 cfwddx action="CFML2WDDX" input="#javascript_verify#" out

RE: Variables in Java and Javascript

2000-10-18 Thread Dave Watts
I do not know if or how you could tell that a broweser is java-enabled. I'd wait and see if Watts responds to this... one can always hope. You can use JavaScript, if it's on, to see if the browser supports Java: script language="JavaScript" if (navigator.javaEnabled()) {

RE: Variables in Java and Javascript

2000-10-18 Thread Jaime Garza
:22 AM To: CF-Talk Subject: RE: Variables in Java and Javascript What i've been looking into is cfwddx, i think its my only hope: cfset javascript_verify = 0 cfwddx action="CFML2WDDX" input="#javascript_verify#" output = "javascript_verify_wddx"

RE: Variables in Java and Javascript - Fixed -

2000-10-18 Thread Gavin Myers
Thanks for all of your inputs. I actually wound up doing this: demo_verify_javascript.cfm noscript cfoutput meta http-equiv="refresh" content="0; URL=error_javascript.cfm" /cfoutput /noscript demo_verify_java.cfm script