Required cfinput working, but not working
The title is a little cryptic, but I wasn't sure how better to describe this!
I'm working in CF8 with DW CS4. Here's some pertinent code snippets:
++++++++++++++
<cfform name='D71_Entry_Form' method='post' action="index.cfm?fuseaction=validate_D71_data">
...
<cfinput type = 'text'
name = 'customer_number'
size = '6'
style = 'font-size: 12px;'
message = 'Customer Number is Required!'
required = 'Yes'>
...
<input type="submit" name="validate_entered_values" value="Submit the Transaction"
onclick="location.href='index.cfm?fuseaction=validate_D71_data'">
++++++++++++++
On clicking the submit button, the error message 'Customer Number is Required!' is shown (as expected) and when I click "OK", instead of remaining on the current screen to re-enter the data, I am sent to the "validate_D71_data" fuse action (not as expected).
What did I fail to code correctly?
