Re: Login Inside Popup

2002-05-30 Thread Jochem van Dieten

Charlie wrote:
 Has anyone created a login app within a pop-up window that upon authentication, the 
pop-up closes and redirects the parent window to a new page..much appreciated 
if anyone can get me on the right track

What sort of pop-up? Just an HTML page? A browser popup because the 
webserver has asked for HTTP authentication?

I have done both.

Jochem

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Login Inside Popup

2002-05-30 Thread Charlie

thanks,  for a smart, simple solution.


- Original Message -
From: Lon Lentz [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, May 29, 2002 5:21 PM
Subject: RE: Login Inside Popup


   I don't have an app, but from the authentication page, loaded in the
popup, if
  authenticated, load a page with the following:

 script
 opener.location.href=PageToLoad.cfm;
 self.close();
 /script

   I can expand on this if needed.

  -Original Message-
  From: Charlie [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, May 29, 2002 4:53 PM
  To: CF-Talk
  Subject: Login Inside Popup
 
 
  Has anyone created a login app within a pop-up window that upon
  authentication, the pop-up closes and redirects the parent window
  to a new page..much appreciated if anyone can get me on
  the right track

 
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Login Inside Popup

2002-05-29 Thread Alex

in the popup do an opener.submit() and self.close() 
or opener.location() and submit()

On Wed, 29 May 2002, Charlie wrote:

 Has anyone created a login app within a pop-up window that upon authentication, the 
pop-up closes and redirects the parent window to a new page..much appreciated 
if anyone can get me on the right track
 
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Login Inside Popup

2002-05-29 Thread Lon Lentz

  I don't have an app, but from the authentication page, loaded in the popup, if
 authenticated, load a page with the following:

script
opener.location.href=PageToLoad.cfm;
self.close();
/script

  I can expand on this if needed.

 -Original Message-
 From: Charlie [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, May 29, 2002 4:53 PM
 To: CF-Talk
 Subject: Login Inside Popup
 
 
 Has anyone created a login app within a pop-up window that upon 
 authentication, the pop-up closes and redirects the parent window 
 to a new page..much appreciated if anyone can get me on 
 the right track

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Login Inside Popup

2002-05-29 Thread Joe Bastian

Check for CGI.SCRIPT_NAME and if some like www.myweb.com/login.cfm

Do an inLine JavaScript
script language=JavaScript
window.open(loginPopup.cfm);
/script
Post the form details back to Login.cfm after checking for data
and do window.close()
and log the user from Login.cfm.

Problems..
what happens if the user login data is invalid?
where do u want to check for User Authorization?
loginPopup.cfm? or Login.cfm , depending on those
parameters.. choose the app flow.

Joe




- Original Message -
From: Charlie [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, May 29, 2002 4:52 PM
Subject: Login Inside Popup


 Has anyone created a login app within a pop-up window that upon
authentication, the pop-up closes and redirects the parent window to a new
page..much appreciated if anyone can get me on the right track
 
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists