$("#Button1").click(function () {
$("input[type='checkbox']").each(function () {
if ($(this).is(":checked")) {
alert($(this).attr("id"));
}
});
})