﻿function ValidateCheckBoxList(sender, args) {
    args.IsValid = false;

    $("#" + sender.CheckBoxListId).find(":checkbox").each(function () {
        if ($(this).attr("checked")) {
            args.IsValid = true;
            return;
        }
    });
}
