CFINPUT type="SUBMIT" was added in version CFMX7
Main Topics
Browse All TopicsAdmittedly, its been a while since I created a CF form but started working on one last night. I uploaded it to my web server and tried it on my IE browser. I am getting this error page:
-------------
Error Diagnostic Information
Attribute set validation error in tag CFINPUT
The tag has an invalid attribute combination: the value of the tag switch attribute 'TYPE' which is now 'SUBMIT' is invalid. The valid attribute values are
TEXT
PASSWORD
CHECKBOX
RADIO
The error occurred while processing an element with a general identifier of (CFINPUT), occupying document position (159:61) to (159:108).
The specific sequence of files included or processed is:
D:\Clients\www.website.COM
Date/Time: 05/30/07 14:26:13
Browser: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.1; .NET CLR 2.0.50727; FDM; .NET CLR 1.1.4322)
Remote Address: x.x.x.x
-------------
Don’t understand why the line with the submit button:
<cfinput type="submit" name="go" value="submit">
Would be causing this? Something easy I am missing no doubt! Help?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: pmascariPosted on 2007-05-30 at 13:58:57ID: 19183442
There is no CFINPUT type of SUBMIT. To make a submit button, just use regular HTML:
<input type="submit" name="go" value="submit">