Well for starters you can set the vars into a dsn, then in your application.cfm file set request.vars to the dsn values,
you can also define your cfid and cftoken this way, and set them in your application.cfm as client or request.vars, obviously something in the dsn must be used to corralate the cfid and cftoken like a username and password then use the login ID, relate them this way, J -----Original Message----- From: Bosky, Dave [mailto:[EMAIL PROTECTED]] Sent: Friday, March 22, 2002 3:05 PM To: CF-Talk Subject: RE: Client Variables If User A has already been to (www.mysite.com) and the variable client.color is set to blue, and no cookies are set, when the user returns to the site how can cf locate his client color information? -----Original Message----- From: Pascal Peters [mailto:[EMAIL PROTECTED]] Sent: Friday, March 22, 2002 9:49 AM To: CF-Talk Subject: RE: Client Variables If you don't set the cookies, it doesn't matter if a user already came to the site. User A comes to a page (by typing www.mysite.com) and CF detects that CFID & CFTOKEN don't exist. CF creates CFID & CFToken. User A goes to the next page by clicking a link <a href="page.cfm?CFID=123&CFTOKEN=12345678">. CF detects that CFID & CFTOKEN exist (you passed them on a url) and is able to find client info. User A types the url www.mysite.com/page2.cfm (and doesn't pass the urltoken). CF detects CFID & CFTOKEN dont exist and creates new ones. the user looses client info. The only way to persist client info without passing the tokens with every link is setting the cookies. -----Original Message----- From: Bosky, Dave [mailto:[EMAIL PROTECTED]] Sent: vrijdag 22 maart 2002 15:38 To: CF-Talk Subject: RE: Client Variables So if User A has already been to index.cfm it will automatically discover the client.urltoken and if User B hasn't been to index.cfm it will create it? How can it do this without using a cookie and how does it differentiate User A from User B? Dave -----Original Message----- From: Pascal Peters [mailto:[EMAIL PROTECTED]] Sent: Friday, March 22, 2002 9:05 AM To: CF-Talk Subject: RE: Client Variables CF creates it if it doesn't exist. This means on the page the user calls first. On the next pages it exists if you passed it on the url. -----Original Message----- From: Bosky, Dave [mailto:[EMAIL PROTECTED]] Sent: vrijdag 22 maart 2002 15:00 To: CF-Talk Subject: Client Variables If I have clientmanagement =yes and setclientcookies=no in my application.cfm file, how does cf identify specific users in the index.cfm file? I understand you must append the client.urltoken to all pages if setclientcookies=no but how does index.cfm find the client.urltoken? Probably a silly question with a simple answer... Dave ______________________________________________________________________ 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/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

