Getting value of disable radio button control in asp.net C#
Not getting value of radio button which i disable using JQuery before page s开发者_开发技巧ubmit.
ASP.NET 2.0 doesn’t submit client-side disabled controls by default
You can use HtmlForm.SubmitDisabledControls Property to specify whether to force controls disabled on the client to submit their values when the page posts back.
精彩评论