please check the below details,
@foreach (var item in Model)
{
<input type="checkbox" id="@item.Id" name="[email protected]" class="chkProductDetails" /> }
Controller:- But, using by below code, I can not get all checked checkbox id's from jQuery datatable under the "Cb_"
FormCollection frm = new FormCollection();
foreach (var item in frm.AllKeys)
{
if (item.Contains("cb_"))
{
var ids = item.Split(new[] { "cb_" }, StringSplitOptions.RemoveEmptyEntries);
}
Kindly replay me.

Balaji PalaniPosted Jun 1, 2016, 7:28 AM
arun prasathPosted Jun 1, 2016, 6:36 AM
});