I have a javascript array with values of checkbox selected. I want to pass this javascript array to asp array so that I can update the database.
I am using Jquery to get checkbox value
$('.checkboxes_to_delete:checked').each(function (key, value)
{
dataToBeDeleted.push($(this).val());
alert(dataToBeDeleted);
});