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 fro

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 th

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 window.open("loginPopup.cfm"); 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 inv

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: opener.location.href="PageToLoad.cfm"; self.close(); I can expand on this if needed. > -Original Message-

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