i have a html form that has 1 textbox and 1 checkbox

if iwant to check the value (on the server side) the code would look like this (about) response.write request.form("textbox1"), but , (there's always one) what if i want to check the checkbox value.........

The returned value of a textbox is in the "value" field, but the value of a checkbox seems to be in the "checked" field

Since the "request.form" only retrieves the value field, how do i proceed for the checked field ?


thank you all