Checkbox returns wrong value when disabled

  • Thread starter Thread starter Paul
  • Start date Start date
P

Paul

Hi

I have a checkbox which I am disabling in clientside code.

On postback, when I try to read the checked value of the
disabled checkbox the checkbox property always returns
false, even if the checkbox is checked. Surely it should
still be true.

Any ideas?

TIA Paul.
 
It would be nice to view some code but you could try to put this in the
page_load:

if not page.ispostback then
checkboxtest.checked = false
end if

Grz, Kris.
 
Back
Top