the value of the same-name fields is a comma-delimited list
of values
from individual fields. so if you have several text input
fields named
"mytext", then you get #form.mytext# with a comma-delimited
list of values.
how to validate it depends on what you want to validate for:
a) all fields required: listlen(trim(form.mytext)) eq
total_number_of_mytext_fields
b) X of fields required: listlen(trim(form.mytext)) eq X
c) at least one filed required: listlen(trim(form.mytext))
gte 1
d) to validate data format: loop through form.mytext list and
validate
each list element.
hth
Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com/