Re: How can I redirect a user?

2003-01-13 Thread Dave Lyons
Sorge" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, January 13, 2003 12:08 PM Subject: Re: How can I redirect a user? > There are several login tags available, but the best way is to just have a > page that loggs the user in. I normally use a page

RE: How can I redirect a user?

2003-01-13 Thread Robert Bailey
y, January 13, 2003 9:08 AM To: CF-Talk Subject: Re: How can I redirect a user? There are several login tags available, but the best way is to just have a page that loggs the user in. I normally use a page called Login.cfm. All this page does is, checks the users information that they posted on the

Re: How can I redirect a user?

2003-01-13 Thread Bruce Sorge
AIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, January 13, 2003 10:52 AM Subject: How can I redirect a user? > I'm setting up authentication against a database, and I have the form > data going to a seperate page that I want users not to see (just a &g

RE: How can I redirect a user?

2003-01-13 Thread Robert Bailey
PROTECTED]] Sent: Monday, January 13, 2003 9:00 AM To: CF-Talk Subject: RE: How can I redirect a user? ...tony Tony Weeg Senior Web Developer UnCertified Advanced ColdFusion Developer Information System Design Navtrak, Inc. Mobile workforce monitoring, mapping & reporting www.navtrak.ne

Re: How can I redirect a user?

2003-01-13 Thread Cutter (CF_Talk)
Scott, Some folks use the CFLOCATION tag for this redirect. I found a conflict with using this in the same page with an input of type="file". I prefer to use a little js on this location.href('mypage.cfm'); Cutter Scott Wilhelm wrote: >I'm setting up authentication against a database, an

RE: How can I redirect a user?

2003-01-13 Thread Mosh Teitelbaum
ED]] > Sent: Monday, January 13, 2003 11:52 AM > To: CF-Talk > Subject: How can I redirect a user? > > > I'm setting up authentication against a database, and I have the form > data going to a seperate page that I want users not to see (just a > preference of mine)...Onc

Re: How can I redirect a user?

2003-01-13 Thread Randell B Adkins
>> [EMAIL PROTECTED] 01/13/03 11:52AM >>> I'm setting up authentication against a database, and I have the form data going to a seperate page that I want users not to see (just a preference of mine)...Once the page is done processing, I want to push the users off to a different page...How do I do t

Re: How can I redirect a user?

2003-01-13 Thread Robert Polickoski
Robert J. Polickoski Senior Programmer, ISRD Inc. (540) 842-6339 [EMAIL PROTECTED] AIM - RobertJFP -- Original Message -- From: "Scott Wilhelm" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date: Mon, 13 Jan 2003 11:52:04 -0500 >I'm setting up authen

RE: How can I redirect a user?

2003-01-13 Thread Robert Bailey
window.location="whatever.cfm"; Robert Bailey [EMAIL PROTECTED] "Famous for nothing!" http://www.tinetics.com -Original Message- From: Scott Wilhelm [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 8:52 AM To: CF-Talk Subject: How can I redirect a

RE: How can I redirect a user?

2003-01-13 Thread Tony Weeg
nday, January 13, 2003 11:52 AM To: CF-Talk Subject: How can I redirect a user? I'm setting up authentication against a database, and I have the form data going to a seperate page that I want users not to see (just a preference of mine)...Once the page is done processing, I want to push the users

How can I redirect a user?

2003-01-13 Thread Scott Wilhelm
I'm setting up authentication against a database, and I have the form data going to a seperate page that I want users not to see (just a preference of mine)...Once the page is done processing, I want to push the users off to a different page...How do I do that? Are there any CF tags for it? Than