I need some advice here. I'm trying to do form validation using Select Case statements embedded within a For Each Loop. Something isn't working correctly. I want it to display all error messages at once, but it is only displaying one at a time. Any clue what's wrong, or any other ideas in accomplishing this? Here is an example of what I've done so far:
For Each Field in Request.Form
Select Case Field
Case "fieldname"
If [Validation Statment] Then
[Display Error Message]
End If
etc...
etc...
End Select
Next