Error: Form Method Must be POST
When you call a ColdFusion application using HTML, you must use METHOD = POST attribute on the FORM tag. For example:
FORM ACTION = "myprog.cfm" METHOD = POST>
If you do not use METHOD = POST, ColdFusion cannot not decode the contents of your form page.

