This is what I use in a Visual Interdev development environment (wouldn't
touch FrontPage) when Im processing the values of check boxes dynamically
added at server time...
for iLp = 1 to Request.Form.Count
if left(Request.form.key(iLp),5) = "ckChr" then
sValue = Request.form(Request.form.key(iLp))
end if
next
Simon