$("#CheckBox").click(function () {
if (this.checked) {
$("input[type='CheckBox']").each(function () { this.checked = true; });
} else {
$("input[type='CheckBox']").each(function () { this.checked = false; });
}
})
$("#CheckBox").click(function () {
if (this.checked) {
$("input[type='CheckBox']").each(function () { this.checked = true; });
} else {
$("input[type='CheckBox']").each(function () { this.checked = false; });
}
})