Re: Phone Number Mask

2006-12-05 Thread Mike Kear
And i guess you dont want any customers from anywhere else in the world. Cheers Mike Kear Windsor, NSW, Australia Adobe Certified Advanced ColdFusion Developer AFP Webworks http://afpwebworks.com ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month On 12/5/06, Steve LaBadie [EMAIL

RE: Phone Number Mask

2006-12-05 Thread Steve LaBadie
Sorry Mike, but my inquiry regarding the mask has to do with a campus directory. From: Mike Kear [mailto:[EMAIL PROTECTED] Sent: Tue 12/5/2006 6:30 PM To: CF-Talk Subject: Re: Phone Number Mask And i guess you dont want any customers from anywhere else

Phone Number Mask

2006-12-04 Thread Steve LaBadie
When I created my test database I set up a phone number mask (999) 999-. The data entered directly displays perfect. When I insert a new record from the admin panel the phone number show as 999-999-. What do I need to do with the admin panel so number display properly? Steve LaBadie

RE: Phone Number Mask

2006-12-04 Thread Bobby Hartsfield
Message- From: Steve LaBadie [mailto:[EMAIL PROTECTED] Sent: Monday, December 04, 2006 12:05 PM To: CF-Talk Subject: Phone Number Mask When I created my test database I set up a phone number mask (999) 999-. The data entered directly displays perfect. When I insert a new record from the admin

RE: Phone Number Mask

2006-12-04 Thread Steve LaBadie
, December 04, 2006 3:04 PM To: CF-Talk Subject: RE: Phone Number Mask That's not really a global standard but if you must use it and force it... Id put it in the database as 99 Then use CF to format it for display. '(' left(phone, 3) ') ' mid(phone, 4, 3) '-' right(phone, 4) That's