login application help requested

2000-03-29 Thread Chris Estes
I have a home page in which there are links both for public and private pages. I want users with a password to be able to click on a private page link, login, then be forwarded directly to that page. It is easy enough to send them to a specific page, but I can't seem to "forward" them. This

RE: login application help requested

2000-03-29 Thread Brian Peddle
u could do is include your authentication in the app.cfm Check there if good they are in if not send back. -Original Message- From: Chris Estes [mailto:[EMAIL PROTECTED]] Sent: Thursday, 30 March 2000 8:24 AM To: '[EMAIL PROTECTED]' Subject: login application help requested I have a

Re: login application help requested

2000-03-29 Thread John Quarto-vonTivadar
what about something a little easier, given that all times after the first time will the SESSION.LoggedIn be true: cfparam name="SESSION.LoggedIn" default="false" type="boolean" cfif NOT SESSION.LoggedIn cfset SESSION.LoggedIn = 1 !--- set stuff other stuff --- /cfif the binary