I have a html checkbox
<input type="checkbox" name="MyChkBox" .. />
There is another control that makes this enable/disabled and I am doing that using JQuery
$(this).attr("disabled", "true");
On the server, I get the checkbox values using:
string info = Request.Form["MyChkBox"];
My problem is if a checkbox is checked and disabled, I need to be able to get this value using Request.Form
You can’t do this, you’ll need to re-enable it to see/get it server-side (otherwise the client won’t send it at all). The browser doesn’t include
disabledcontrols in the<form>submission, since they don’t count as “successful” controls.