I tried to do some research on this but haven't been able to find a thing on it. Perhaps someone has a idea.
Page 1 has 5 checkboxes.
Boxes 2 and 3 are "checked" and "disabled"(grayed out).
User checks off box 5 and clicks submit.
On page 2 I am using the code:
To pull value of checkbox. "on" or " ".
HOWEVER, the (checked and disabled) boxes (2 and 3) return " " instead of "on" as they are checked. Is there a way to use "request.form" to see if the check box is disabled?
Thank you in advance!
Page 1 has 5 checkboxes.
Boxes 2 and 3 are "checked" and "disabled"(grayed out).
User checks off box 5 and clicks submit.
On page 2 I am using the code:
Code:
Response.Write (Request.Form("checkboxName"))
HOWEVER, the (checked and disabled) boxes (2 and 3) return " " instead of "on" as they are checked. Is there a way to use "request.form" to see if the check box is disabled?
Thank you in advance!