[thelist] ASP - Request Object

Simon Davies simon.davies at bigpond.com
Wed May 31 23:30:16 2000


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