RE: ?id=23

2003-09-15 Thread Trey Rouse
I would urge you not to use encrypt/decrypt. We have found bugs in the encrypt/decrypt libraries that sometimes something is encrypted that is not decrypt()able. Honestly, add a column to the table of type GUID. Use this value for url ID linking. Users will not be able to guess additional ID's

RE: ?id=23

2003-09-14 Thread Peter Tilbrook
Use a "backup" variable to authenticate the user with their profile. For example a user "logs in" - you can assign their ID number as a session variable (eg: 23) but ALSO assign a unique variable that you stored in the database when the account was created - eg CreateUUID(). Then when they login y

RE: ?id=23

2003-09-12 Thread Jim Davis
> -Original Message- > From: [EMAIL PROTECTED] [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > Sent: Friday, September 12, 2003 5:53 PM > To: CF-Talk > Subject: ?id=23 > > All, > > I have an application that passes an id value through a hyperlink that > the user clicks on in an e-mail. Th

Re: ?id=23

2003-09-12 Thread Jason Ross
On Fri, 12 Sep 2003, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: > All, > > I have an application that passes an id value through a hyperlink that > the user clicks on in an e-mail. The id feeds the page and extracts information and > populates the form fields with the user's information. > > THE P

RE: ?id=23

2003-09-12 Thread cf
M > To: CF-Talk > Subject: Re: ?id=23 > > > im sure i will get bashed for this answer but here is something i have > done before > > on the link that that would take you to the detail page you normally > pass > the info along via the url. > > Well im not sur

RE: ?id=23

2003-09-12 Thread Tony Weeg
you crack me up dave tw -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, September 12, 2003 6:41 PM To: CF-Talk Subject: Re: ?id=23 im sure i will get bashed for this answer but here is something i have done before on the link that that would

Re: ?id=23

2003-09-12 Thread cf
im sure i will get bashed for this answer but here is something i have done before on the link that that would take you to the detail page you normally pass the info along via the url. Well im not sure how correct this is but I have before done the same thing by setting the link as a session vari

Re:?id=23

2003-09-12 Thread coldfusion . developer
Thanks to all for your replies. The encrypt is just what i was looking for. D- >encrypt on the way up and decrypt it when you use it on your form page to >pull back the record's data > >Bryan Stevenson B.Comm. >VP & Director of E-Commerce Development >Electric Edge Systems Group Inc. >t. 250.920

Re: ?id=23

2003-09-12 Thread Bryan Stevenson
encrypt on the way up and decrypt it when you use it on your form page to pull back the record's data Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] - Mac

RE: ?id=23

2003-09-12 Thread Andy Ousterhout
I use a class called User that is instantiated as a system variable when a User logs in and out. In User I have methods to authenticate User for login and another authorize access to pages and data within a page. Andy -Original Message- From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[