IE 8 / Vista not recognizing submit button
Here is the code for a simple form at http://www.versaframe.com/catalog/button.cfm. When you first visit the page you should see a Review Order button. After pressing the button you should see the text "Review". This form works fine except when using IE on Vista where it does not appear to recognize the Submit button. Also this form works on other servers, so I think it may have something to do with the server configuration. Can anybody help? Thanks!
<html>
<head>
</head>
<body>
<cfif parameterexists(submit)>
Review
<cfelse>
Not Review
<form action="button.cfm" method="post">
<input type=submit name=submit value="Review Order">
</form>
</cfif>
</body>
</html>
