function pageLoad(sender, args) { CheckAllProject(); }
function CheckAllProject () { $("[id*=lbxProjectList]").focus(function () { if ($("[id*=lbxProjectList] input:checked").length == $("[id*=lbxProjectList] input").length) { $("[id*=CheckBox1]").attr("checked", "checked"); } else { $("[id*=CheckBox1]").removeAttr("checked"); } }); }