Re: Cflocation and a popup

2002-08-29 Thread charlie griefer
Kodjo Ackah writes: Can I do this? cfif NOT IsDefined('session.client_id') cflocation url=javascript:popUpb('home_login.cfm') cfabort /cfif why not do: cfif NOT isDefined('session.client_id') script popUpb('home.login.cfm'); /script /cfif what advantage

Re: Cflocation and a popup

2002-08-29 Thread charlie griefer
Kodjo Ackah writes: No joy to this either! cfif NOT IsDefined('session.client_id') script language=javascript function popUpb(URL) { day = new Date(); id = day.getTime(); eval(page + id + = window.open(home_login.cfm, ' + id + ',

Cflocation and a popup

2002-08-28 Thread Kodjo Ackah
Can I do this? cfif NOT IsDefined('session.client_id') cflocation url=javascript:popUpb('home_login.cfm') cfabort /cfif It doesn't work though! Don't worry - I have a function in my head tags within my top element page. Kodjo ackah Principal Consultant concrete-media.com

RE: Cflocation and a popup

2002-08-28 Thread Phoeun Pha
: Wednesday, August 28, 2002 12:18 PM To: CF-Talk Subject: Cflocation and a popup Can I do this? cfif NOT IsDefined('session.client_id') cflocation url=javascript:popUpb('home_login.cfm') cfabort /cfif It doesn't work though! Don't worry - I have a function in my head tags within my top

Re: Cflocation and a popup

2002-08-28 Thread Paul Giesenhagen
The abort is probably giving you fits ... remove it and try it out! Paul Giesenhagen QuillDesign - Original Message - From: Kodjo Ackah [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, August 28, 2002 12:18 PM Subject: Cflocation and a popup Can I do

Re: Cflocation and a popup

2002-08-28 Thread S . Isaac Dealey
Can I do this? cfif NOT IsDefined('session.client_id') cflocation url=javascript:popUpb('home_login.cfm') cfabort /cfif It doesn't work though! Don't worry - I have a function in my head tags within my top element page. M... nope, I wouldn't expect that to work and here's

RE: Cflocation and a popup

2002-08-28 Thread Kodjo Ackah
No joy to dropping the cfabort Kodjo ackah Principal Consultant concrete-media.com __ Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics.

RE: Cflocation and a popup

2002-08-28 Thread Kodjo Ackah
No joy to this either! cfif NOT IsDefined('session.client_id') script language=javascript function popUpb(URL) { day = new Date(); id = day.getTime(); eval(page + id + = window.open(home_login.cfm, ' + id + ',

RE: Cflocation and a popup

2002-08-28 Thread Kodjo Ackah
Isaac, this did not work - cfabort makes it all go blank! Kodjo ackah Principal Consultant concrete-media.com __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion

RE: Cflocation and a popup

2002-08-28 Thread Phoeun Pha
that's cos you're doing it wrong! u need home_login.cfm to be a text and where di the variable ID from from? where was it defined? -Original Message- From: Kodjo Ackah [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 28, 2002 12:49 PM To: CF-Talk Subject: RE: Cflocation and a popup

RE: Cflocation and a popup

2002-08-28 Thread Christopher Olive
-Talk Subject: RE: Cflocation and a popup No joy to this either! cfif NOT IsDefined('session.client_id') script language=javascript function popUpb(URL) { day = new Date(); id = day.getTime(); eval(page + id + = window.open(home_login.cfm, ' + id + ', 'toolbar=0,scrollbars=0,location

RE: Cflocation and a popup

2002-08-28 Thread S . Isaac Dealey
Isaac, this did not work - cfabort makes it all go blank! View the source on the page and make sure that your script tags and their content are on the page... If so, then you need to start troubleshooting the javascript ... if not, then you need to figure out why it's not displaying the