[style] usernames

2002-05-26 Thread Michael Dinowitz
Lets say I have an application where people will sign in to get access to some resources. The signin uses a standard username/password. What do you feel is best for a username? Many sites use the persons email address while others allow them to just write in some text. The only disadvantage of

RE: [style] usernames

2002-05-26 Thread Neil Clark - =TMM=
- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: 26 May 2002 20:44 To: CF-Talk Subject: [style] usernames Lets say I have an application where people will sign in to get access to some resources. The signin uses a standard username/password. What do you feel is best for a username

Re: [style] usernames

2002-05-26 Thread Donnie Bachan
I usually let them use whatever they like, not force them to use their email address, to prevent two users from having the same username I just check the db before inserting the name to ensure that no one has that name already. If there is a duplicate I send them back to the registration page a

Re: [style] usernames

2002-05-26 Thread Ewok
May 26, 2002 3:49 PM Subject: Re: [style] usernames > I usually let them use whatever they like, not force them to use their email > address, to prevent two users from having the same username I just check the > db before inserting the name to ensure that no one has that name already. If >

RE: [style] usernames

2002-05-26 Thread Neil Clark - =TMM=
Duplicate emails? Neil Clark Team Macromedia http://www.macromedia.com/go/team Announcing Macromedia MX!! http://www.macromedia.com/software/trial/. -Original Message- From: Ewok [mailto:[EMAIL PROTECTED]] Sent: 26 May 2002 20:55 To: CF-Talk Subject: Re: [style] usernames and

Re: [style] usernames

2002-05-26 Thread Ewok
Like Donnie said, people make typo mistakes, so yes duplicate emails - Original Message - From: "Neil Clark - =TMM=" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Sunday, May 26, 2002 3:48 PM Subject: RE: [style] usernames > Duplica

Re: [style] usernames

2002-05-26 Thread Michael Dinowitz
I can't tell you, it's a secret. You'll just have to wait in anticipation. :) > I usually let them use whatever they like, not force them to use their email > address, to prevent two users from having the same username I just check the > db before inserting the name to ensure that no one has t

RE: [style] usernames

2002-05-26 Thread Neil Clark - =TMM=
/software/trial/. -Original Message- From: Ewok [mailto:[EMAIL PROTECTED]] Sent: 26 May 2002 20:55 To: CF-Talk Subject: Re: [style] usernames and if your gonna check the db for duplicate emails you might as well let them use their own user name having a life is overrated

Re: [style] usernames

2002-05-26 Thread Jim McAtee
as the table's primary key to identify a user. Jim - Original Message - From: "Michael Dinowitz" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Sunday, May 26, 2002 1:44 PM Subject: [style] usernames > Lets say I have an application wh

Re: [style] usernames

2002-05-26 Thread Justin Scott
Can we say AOL.. -Justin Scott, Lead Developer Sceiron Internet Services, Inc. http://www.sceiron.com - Original Message - From: "Neil Clark - =TMM=" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Sunday, May 26, 2002 3:49 PM Subjec

RE: [style] usernames

2002-05-26 Thread Neil Clark - =TMM=
:-) Neil Clark Team Macromedia http://www.macromedia.com/go/team Announcing Macromedia MX!! http://www.macromedia.com/software/trial/. -Original Message- From: Justin Scott [mailto:[EMAIL PROTECTED]] Sent: 26 May 2002 21:17 To: CF-Talk Subject: Re: [style] usernames Can

Re: [style] usernames

2002-05-26 Thread Paul Giesenhagen
I would say it depends on if you are 'displaying' usernames in a forum or on articles or something like that. If so, go with usernames, but use email / password for identity and uniquness. Paul Giesenhagen QuillDesign > Lets say I have an application where people will sign in to get access to

Re: [style] usernames

2002-05-26 Thread Michael Dinowitz
The display will be the persons 'real name' that they sign up with. At no time will the users email address be displayed. The app is rather low security so I think that using the persons primary email address as their username will work out ok. Another design question answered, another step tow

RE: [style] usernames

2002-05-26 Thread Cameron Childress
> The display will be the persons 'real name' that they sign up > with. At no time will the users email address be displayed. The > app is rather low security so I think that using the persons > primary email address as their username will work out ok. > Another design question answered, another s

Re: [style] usernames

2002-05-26 Thread Michael Dinowitz
Interesting problem. This is for the list archive login. I think that I'm going to go with the email address for now. I can always change it. > > The display will be the persons 'real name' that they sign up > > with. At no time will the users email address be displayed. The > > app is rather

RE: [style] usernames

2002-05-26 Thread Cameron Childress
-Original Message- > From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] > Sent: Sunday, May 26, 2002 5:47 PM > To: CF-Talk > Subject: Re: [style] usernames > > > Interesting problem. This is for the list archive login. I think > that I'm going to go with the e

Re: [style] usernames

2002-05-26 Thread Michael Dinowitz
- > Cameron Childress > Sumo Consulting Inc. > --- > cell: 678-637-5072 > aim: cameroncf > email: [EMAIL PROTECTED] > > > > -Original Message- > > From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] > > Sent: Sunday, May 26, 2002 5

RE: [style] usernames

2002-05-26 Thread UXB Internet
.com/ http://dennis.uxb.net/ -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Sunday, May 26, 2002 6:18 PM To: CF-Talk Subject: Re: [style] usernames Actually, the new lists are set up for multiple posting addresses to deal with people who have multiple. What I'

RE: [style] usernames

2002-05-27 Thread Andrew Scott
you for the project you are working on. -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Monday, 27 May 2002 5:44 AM To: CF-Talk Subject: [style] usernames Lets say I have an application where people will sign in to get access to some resources. The signin uses a

Re: [style] usernames

2002-05-27 Thread Bud
On 5/26/02, Michael Dinowitz penned: > >Lets say I have an application where people will sign in to get >access to some resources. The signin uses a standard >username/password. What do you feel is best for a username? Many >sites use the persons email address while others allow them to just >

Re: [style] usernames

2002-05-27 Thread Bud
On 5/26/02, Jim McAtee penned: >I let people choose their own usernames, with some small restrictions, such as >a minimal length and no spaces. It's easy enough to do a lookup on existing >usernames to avoid duplicates and display a message if already in use. >Usually, you're doing some other err

RE: [style] usernames

2002-05-27 Thread Erika L Walker-Arnold
We have this discussion, all the time ... And we've come down to what we think is the best of both worlds ... We allow usernames that are people's email addresses. Yes, it's a double entry, but not everyone wants to use an email address as a username. I hate to. I much prefer to use weberika. I a

RE: [style] usernames

2002-05-27 Thread Eric Dawson
Yeah, I'm with Erika. I prefer to use a uid I make up than an email address. And have the option to use your email address is a good one. Eric From: "Erika L Walker-Arnold" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: CF-Talk <[EMAIL PROTECTED]> Subject: RE:

RE: [style] usernames

2002-05-27 Thread Kola Oyedeji
st my 2p KOla -Original Message- From: Cameron Childress [mailto:[EMAIL PROTECTED]] Sent: 26 May 2002 22:12 To: CF-Talk Subject: RE: [style] usernames > The display will be the persons 'real name' that they sign up > with. At no time will the users email address be dis

RE: [style] usernames

2002-05-27 Thread Andrew Scott
[mailto:[EMAIL PROTECTED]] Sent: Monday, 27 May 2002 9:14 PM To: CF-Talk Subject: Re: [style] usernames Since 90% of the time (at least for me), the e-mail address is a unique field, I generally use the e-mail address. The only drawback to this is if you have an application that may have 2 users

RE: [style] usernames

2002-05-27 Thread Philip Arnold - ASP
> That's a good point. Another point I should make is that it > is extremely annoying when the user has to keep trying > different usernames only to get a message along the lines > of 'this user name has already been taken' especially if > each attempt is another trip to the server. This is one o

Re: [style] usernames

2002-05-27 Thread Jim McAtee
- Original Message - From: "Erika L Walker-Arnold" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, May 27, 2002 5:45 AM Subject: RE: [style] usernames > We have this discussion, all the time ... And we've come down to wh

Re: [style] usernames

2002-05-30 Thread Patti G. L. Hall
What do you do, then, if by chance the old email address that the user signed up with is no longer in service? Then, even if they could remember the right email they couldn't retrieve the password? This has happened to me before and I've been SOL. -Patti > > As for username/password retrieval .