Hello everyone when i am clicking button, why action method is not calling can anyone suggest me ??
VIEW
=======
function SaveAndNextButton(e) {
var value = $(".selected td:first").html();
$.ajax({
type: "POST",
url: "/Cashier/Delete",
data: {
values: value
},
});
}
Controller
========
public JsonResult Delete(int ItemName)
{
//
}
Rajanikant HawaldarPosted Jun 19, 2019, 1:50 AM