$.ajax({
type: "PUT",(or "DELETE")
url: "example.com/controller",
data: {
ID: 10,
},
cache: false,
success: function(data) {}
});
here my ajax, and in my controller i want to get ID, but c.PostForm("ID") not work for delete(work for PUT), help me please!
Finally, i have to pass params to URI.(delete method)