

đây là đoạn code để select client id trong Js tag
$('#<%= chkCopyBuildingPhases.ClientID %>').change(function()
{
if(this.checked == true)
{
$('#<%= chkCopySubcomponents.ClientID %>').attr("disabled", false);
} else {
$('#<%= chkCopySubcomponents.ClientID %>').attr("disabled", true);
$('#<%= chkCopySubcomponents.ClientID %>').prop("checked", false);
}
})