cfmx + odd action page results

2004-06-01 Thread Won Lee
Hello, First of all, I haven't done much CF work since CF 5.0. I DLed the new MX demo version. I have a simple form page. cfparam name=url.holiday default= cfparam name=url.holiday_date default= cfparam name=url.same_date default=1 cfparam name=url.error_message default= !DOCTYPE HTML PUBLIC

RE: cfmx + odd action page results

2004-06-01 Thread Ian Skinner
_date is a reserved name in ColdFusionIt allows for automatic form validation.See the section on server-side validation in the documentation there is a whole group if reserved form names used for this. _date _integer _required When these are appended to a form name, Cold Fusion tries to

RE: cfmx + odd action page results

2004-06-01 Thread Dave Watts
... cfinput type=Text name=holiday required=Yes value=#holiday# cfinput type=Text name=holiday_date value=#holiday_date# ... It does the oddest thing. THe action page returns an error message. Form entries incomplete or invalid and returns the date. I went back and commented out the

RE: cfmx + odd action page results

2004-06-01 Thread Won Lee
At 08:20 6/1/2004 -0700, you wrote: _date is a reserved name in ColdFusionIt allows for automatic form validation.See the section on server-side validation in the documentation there is a whole group if reserved form names used for this. _date _integer _required Good stuff.Thanks. [Todays

RE: cfmx + odd action page results

2004-06-01 Thread Pascal Peters
- From: Won Lee [mailto:[EMAIL PROTECTED] Sent: dinsdag 1 juni 2004 17:11 To: CF-Talk Subject: cfmx + odd action page results Hello, First of all, I haven't done much CF work since CF 5.0. I DLed the new MX demo version. I have a simple form page. cfparam name=url.holiday