I have a simple cfform using Flash that keeps giving the following error: INVALID_CHARACTER_ERR: An invalid or illegal XML character is specified. null I can't see any problems and do not understand where the null it is referring to is. Any help would be greatly appreciated. Thanks in advance. <cfform action="certificate_2.cfm" format="flash" height="300" width="400" method="post" preservedata="yes"> <cfinput type="text" label="First Name" name="FirstName" required="yes" size="25" tabindex="1"> <cfinput type="text" label="Last Name" name="LastName" required="yes" size="25" tabindex="2"> <cfinput type="text" label="Trip Name" name="TripName" required="yes" size="25" tabindex="3"> <cfinput type="text" label="Start Location" name="StartLocation" required="yes" size="25" tabindex="4"> <cfinput type="text" label="End Location" name="EndLocation" required="yes" size="25" tabindex="5"> <cfinput type="text" label="Email" name="Email" required="no" size="25" tabindex="6"> <cfselect label="Member Status" name="Member Status" required="no" size="1" width="150" tabindex="7"> <option value="">Select Member Stauts <option value="1">Current Member <option value="2">Past Member <option value="0">Non Member</cfselect> <cfselect label="Year" required="yes" name="TripYear" size="1" width="150" tabindex="8"> <option value="">Select Year</option> <option>2007 <option>2006 <option>2005 <option>2004 <option>2003 <option>2002 <option>2001 <option>2000 <option>1999 <option>1998 <option>1997 <option>1996 <option>1995 <option>1994 <option>1993 <option>1992 <option>1991 <option>1990 <option>1989 <option>1988 <option>1987 <option>1986 <option>1985 <option>1984 <option>1983 <option>1982 <option>1981 <option>1980 <option>1979 <option>1978 <option>1977 <option>1976 <option>1975</cfselect><br> <cfformgroup type="horizontal"> <cfinput type="submit" name="submit" width="100" value="Submit"> <cfinput type="reset" name="reset" width="100" value="Reset"> </cfformgroup> </cfform>
You can't have a space in the name of the select list
Don't see what you're looking for? Try a search.
|