RE: [ACFUG Discuss] weird cfinput vs input stuff. date is shown as {d '2009-02-12'} vs 02/12/2009

2009-03-03 Thread Charlie Arehart
Here's one of the old notes that didn't make it... -Original Message- From: Charlie Arehart [mailto:careh...@carehart.org] Sent: Thursday, February 12, 2009 2:04 PM To: 'discussion@acfug.org' Subject: RE: [ACFUG Discuss] weird cfinput vs input stuff. date is shown as {d '2009-02-12'} vs

RE: [ACFUG Discuss] weird cfinput vs input stuff. date is shown as {d '2009-02-12'} vs 02/12/2009

2009-03-03 Thread Charlie Arehart
Here's another of the old notes that didn't make it... From: Charlie Arehart [mailto:careh...@carehart.org] Sent: Thursday, February 12, 2009 2:12 PM To: 'discussion@acfug.org' Subject: RE: [ACFUG Discuss] weird cfinput vs input stuff. date is shown as {d '2009-02-12'} vs 02/12/2009 You

Re: [ACFUG Discuss] weird cfinput vs input stuff. date is shown as {d '2009-02-12'} vs 02/12/2009

2009-02-12 Thread Ajas Mohammed
Thanks, Yes, but the big question is why cffrom cfinput would send date in that format. Its not the first time I have i used cfinput. Date usually comes across in standard date format. Anyone??? Ajas Mohammed / http://ajashadi.blogspot.com We cannot become what we need to be, remaining what we

Re: [ACFUG Discuss] weird cfinput vs input stuff. date is shown as {d '2009-02-12'} vs 02/12/2009

2009-02-12 Thread Teddy R. Payne
Ajas, This is my unconfirmed assertion. You have a validator type of type date, which returns a string expression of a date object notation. My assertion is that the validator type that you use will give you the data type on the submission in its expressed format. I changed your code to

Re: [ACFUG Discuss] weird cfinput vs input stuff. date is shown as {d '2009-02-12'} vs 02/12/2009

2009-02-12 Thread Dean H. Saxe
Please tell me you mistyped perfect on purpose. Please. -dhs Dean H. Saxe, CISSP, CEH d...@fullfrontalnerdity.com I have always strenuously supported the right of every man to his own opinion, however different that opinion might be to mine. He who denies another this right makes a slave

Re: [ACFUG Discuss] weird cfinput vs input stuff. date is shown as {d '2009-02-12'} vs 02/12/2009

2009-02-12 Thread shawn gorrell
oyu stll no wut he ment... ;) From: Dean H. Saxe d...@fullfrontalnerdity.com To: discussion@acfug.org Sent: Thursday, February 12, 2009 10:41:36 AM Subject: Re: [ACFUG Discuss] weird cfinput vs input stuff. date is shown as {d '2009-02-12'} vs 02/12/2009

Re: [ACFUG Discuss] weird cfinput vs input stuff. date is shown as {d '2009-02-12'} vs 02/12/2009

2009-02-12 Thread Dawn Hoagland
As a matter of habit, I do not use the cfinput tags for validation however the few times I've reviewed or modified code from other developers who validate dates this way, this is the behavior I have seen. In general, when I'm checking the date on the submit, I format it anyway. On Thu, Feb

Re: [ACFUG Discuss] weird cfinput vs input stuff. date is shown as {d '2009-02-12'} vs 02/12/2009

2009-02-12 Thread Teddy R. Payne
Ajas, I recommend reading the Adobe Live Docs concerning validation and form fields. In the below snippet, you will see some curious behavior: cfparam name=form.test default= / cfdump var=#form# cfform name=foo action=untitled2.cfm cfinput type=text name=absence_date_1 size=10 value=

Re: [ACFUG Discuss] weird cfinput vs input stuff. date is shown as {d '2009-02-12'} vs 02/12/2009

2009-02-12 Thread Dean H. Saxe
Plus its a completely useless client side check which needs to be repeated server-side as well if you want any assurance that validation was successful. -dhs Dean H. Saxe, CISSP, CEH d...@fullfrontalnerdity.com If liberty means anything at all, it means the right to tell people what they

RE: [ACFUG Discuss] weird cfinput vs input stuff. date is shown as {d '2009-02-12'} vs 02/12/2009

2009-02-12 Thread Charlie Arehart
...@acfug.org] On Behalf Of Ajas Mohammed Sent: Thursday, February 12, 2009 12:22 PM To: discussion@acfug.org Subject: Re: [ACFUG Discuss] weird cfinput vs input stuff. date is shown as {d '2009-02-12'} vs 02/12/2009 Hi Charlie, Thanks for pointing out _date validation. That would make sense

Re: [ACFUG Discuss] weird cfinput vs input stuff. date is shown as {d '2009-02-12'} vs 02/12/2009

2009-02-12 Thread Dean H. Saxe
-Original Message- From: ad...@acfug.org [mailto:ad...@acfug.org] On Behalf Of Dean H. Saxe Sent: Thursday, February 12, 2009 11:08 AM To: discussion@acfug.org Subject: Re: [ACFUG Discuss] weird cfinput vs input stuff. date is shown as {d '2009-02-12'} vs 02/12/2009 Plus its a completely

Re: [ACFUG Discuss] weird cfinput vs input stuff. date is shown as {d '2009-02-12'} vs 02/12/2009

2009-02-12 Thread Dawn Hoagland
*To:* discussion@acfug.org *Subject:* Re: [ACFUG Discuss] weird cfinput vs input stuff. date is shown as {d '2009-02-12'} vs 02/12/2009 Hi Charlie, Thanks for pointing out _date validation. That would make sense. But if you notice, from the code, I use a loop and I am *appending* the index

Re: [ACFUG Discuss] weird cfinput vs input stuff. date is shown as {d '2009-02-12'} vs 02/12/2009

2009-02-12 Thread Teddy R. Payne
[mailto:ad...@acfug.org] *On Behalf Of *Ajas Mohammed *Sent:* Thursday, February 12, 2009 12:22 PM *To:* discussion@acfug.org *Subject:* Re: [ACFUG Discuss] weird cfinput vs input stuff. date is shown as {d '2009-02-12'} vs 02/12/2009 Hi Charlie, Thanks for pointing out _date validation