enable property of checkbox control

  • Thread starter Thread starter vikram
  • Start date Start date
V

vikram

i am setting enable property of check box control using
javascript, but when form is posted back , it does not
reflect correct enable value.i.e. if i have set checkbox
control enabled to false in javascript, it still gives
enabled true in page load.
What is the problem in this?
thnaks
 
Controls that are disabled on the client are not posted back in the forms
collection to the server on postback (form.submit).

bill
 
Back
Top