Suppose you have a checkbox with name myBox, and you disable it. The resulting markup for the myBox element will contain the disabled attribute, but the hidden _myBox element (used to indicate presence of the control) will not be disabled. This will cause the value to always be set to false even when you do not wish to post it back.
Suppose you have a checkbox with name myBox, and you disable it. The resulting markup for the myBox element will contain the
disabled
attribute, but the hidden _myBox element (used to indicate presence of the control) will not be disabled. This will cause the value to always be set tofalse
even when you do not wish to post it back.