BFreshour
Programmer
- Mar 20, 2002
- 84
What am I doing wrong here? I thought since the first option had no value that they wouldn't be able to submit the form if it was selected, however, they can... Any tips?
Code:
<cfselect name="ClientID" required="yes" message="You must select your company!">
<option></option>
<cfoutput query="GetClients">
<option value="#GetClients.ClientID#">#GetClients.ClientName#</option>
</cfoutput>
</cfselect>