Ask a Question related to Macromedia ColdFusion, Design and Development.
-
rpicker #1
validation error
Does anyone have any idea what this message means. I get the message when I try
to send a message. Attribute validation error for tag CFMAIL. The value of
the attribute TO is invalid. The length of the string, 0 character(s), must be
greater than or equal to 1 character(s). I am sending the message from a
query as follows: <cfquery datasource='siteadmin' name='getcontacts'> select *
from super_contacts </cfquery> <cfmail to='#email#
from='dragonlist@dragon.k12.pa.us' subject='#form.subject#'
query='getcontacts'> mail body info </cfmail>
rpicker Guest
-
CSS Validation Error
I am relatively new to CSS. I recently worked through a tutorial on it that used 1em for the body font-size, and then based others off of it (h1-->... -
Attribute validation error for tag CFQUERYPARAM.
I have a page that lets the user upload an image to change the logo of the website. It works fine on ColdFusion MX7 but on earlier versions I get... -
cfform validation and pop up error
hi, i have two javascript functions. One is for email validation and the other to initiate a pop up window with a confirmation. <script... -
Form validation error!
Hi , I have a form with a text field 'myTxt' and this is an Optional field. However I have NumberValidator defined for this text field so that... -
error validation question
What is the cleanest and easiest way to produce on screen (no-popup) error validations for forms? Sincerely, %Julia% -
vkunirs #2
Re: validation error
Hi
Here you are retreving the emails from the database. i there for some person
you have not entered any mail...so there is To email address ... so because of
that reason your getting that error.. first try to check wheter all the
persons is having the mail ids
vkunirs Guest
-
unseth #3
Validation error
It has been awhile since I have worked with forms and I am getting a error when
validating on the third line.
Empty values are not valid for the ""selected"" attribute in any of the
currently active versions. See the above warnings for more details.[XHTML 1.0
transitional]
<td width="400" height="25" align="left">
<select name="Operating_System">
<option selected value=""></option>
<option value="Linux">Linux</option>
<option value="Windows 2000">Windows 2000</option>
<option value="Windows 2000 Server">Windows 2000 Server</option>
<option value="Windows XP">Windows XP</option>
<option value="Windows 2003 Server">Windows 2003 Server</option>
<option value="Other">Other</option>
</select>
</td>
</tr>
Do I even need the line "<option selected value=""></option>"
unseth Guest
-
Murray *ACE* #4
Re: Validation error
Why is this empty?
<option selected value=""></option>
--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
[url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
[url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
[url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
[url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
==================
"unseth" <webforumsuser@macromedia.com> wrote in message
news:eccqpj$m3$1@forums.macromedia.com...> It has been awhile since I have worked with forms and I am getting a error
> when
> validating on the third line.
>
> Empty values are not valid for the ""selected"" attribute in any of the
> currently active versions. See the above warnings for more details.[XHTML
> 1.0
> transitional]
>
> <td width="400" height="25" align="left">
> <select name="Operating_System">
> <option selected value=""></option>
> <option value="Linux">Linux</option>
> <option value="Windows 2000">Windows 2000</option>
> <option value="Windows 2000 Server">Windows 2000 Server</option>
> <option value="Windows XP">Windows XP</option>
> <option value="Windows 2003 Server">Windows 2003 Server</option>
> <option value="Other">Other</option>
> </select>
> </td>
> </tr>
>
>
>
> Do I even need the line "<option selected value=""></option>"
>
Murray *ACE* Guest
-
unseth #5
Re: Validation error
My supervisor wants to have the seclection for Operating System to be left blank until they use the pull down , opon pulling the box down they will select the operating system that they would like.
unseth Guest
-
Murray *ACE* #6
Re: Validation error
But that's what is causing the validation error. Why not add something like
"> Make your selection <"?
--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
[url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
[url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
[url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
[url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
==================
"unseth" <webforumsuser@macromedia.com> wrote in message
news:ecd2eq$9m0$1@forums.macromedia.com...> My supervisor wants to have the seclection for Operating System to be left
> blank until they use the pull down , opon pulling the box down they will
> select the operating system that they would like.
>
Murray *ACE* Guest
-
unseth #7
Re: Validation error
Tried <option selected value="Please Select Operating System"></option>
Still erroring with same error code
Tried <option selected value="Please Select Operating System">Please Select
Operating System</option>
Still erroring with same error code
unseth Guest
-
Murray *ACE* #8
Re: Validation error
<option selected="selected" value="-">Please Select Operating
System</option>
--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
[url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
[url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
[url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
[url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
==================
"unseth" <webforumsuser@macromedia.com> wrote in message
news:ecd5o4$djl$1@forums.macromedia.com...> Tried <option selected value="Please Select Operating System"></option>
> Still erroring with same error code
>
> Tried <option selected value="Please Select Operating System">Please
> Select
> Operating System</option>
> Still erroring with same error code
>
Murray *ACE* Guest
-
unseth #9
Re: Validation error
Thanks - the selected="selected" worked and cleared all my validation errors
unseth Guest
-
Murray *ACE* #10
Re: Validation error
That's what it meant by having empty values. No attribute can be empty,
e.g., selected="selected", checked="checked", readonly="readonly",
disabled="disabled", etc.
--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
[url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
[url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
[url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
[url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
==================
"unseth" <webforumsuser@macromedia.com> wrote in message
news:ecf0vs$kb2$1@forums.macromedia.com...> Thanks - the selected="selected" worked and cleared all my validation
> errors
Murray *ACE* Guest



Reply With Quote

