Automatic Required Field Validators
Favorite Sport:
<asp:DropDownList ID="dropSport_req" runat="server">...</asp:DropDownList>
This will get a validator, but since the prefix 'drop' was not specified to be trimmed, it will show up in the validator
Referred by:
<asp:DropDownList ID="ddlReferred_By_req"
runat="server">...</asp:DropDownList>
This will get a properly formatted validator, but it will never run because the
'empty' string specified in the function was "-select-" and this control has a
default of "-choose-" so the validator will not see it as empty