Re: for each x in Request.Form by Kevin
Kevin
Tue Mar 28 11:09:05 CST 2006
You can't really. If you know the indices of the checkboxes in the
Collection, you can loop through the subset, as in:
For i = StartIndex To EndIndex
val = Request.Form(i)
Next
If you know the names of the checkboxes, you can identify them that way:
For Each element In Request.Form
If element = "CheckBoxName" Then
End If
Next
--
HTH,
Kevin Spencer
Microsoft MVP
Professional Numbskull
Show me your certification without works,
and I'll show my certification
*by* my works.
"Licass" <l.r.m.d@sapo.pt> wrote in message
news:%236VoiNnUGHA.2704@tk2msftngp13.phx.gbl...
> how can i interate only with the checkbox type controls in the form
>
>