This topic is locked

Uncheck a checkbox

7/14/2006 5:15:44 AM
ASPRunnerPro General questions
N
NigelEtienne author

I am trying to change a checkbox value to "off" when users edit records. I have selected the Before Edit event and added the following code GetRequestForm("BoxApproved") = "off". This does not uncheck the box. Could you give me some idea on where I'm going wrong?

J
Jane 7/14/2006

Hi,
use following code for the Before record updated event:

dict("BoxApproved")="off"

N
NigelEtienne author 7/14/2006

Hi,

use following code for the Before record updated event:



many thanks - works a treat!