|
<% if UBound(errorMsgs) >= 0 then %>
Form could not be processed due to the following errors:
<% for each msg in errorMsgs %>
-
<% = msg %>
<% next %>
<< Go back to form page
<% else %>
| The following information has been sent: |
<% for each name in fieldOrder %>
<% = name %>
|
<% = Request.Form(name) %>
|
<% next %>
<% end if %> |