$(document).ready(function () {
$("#btnPost").click(function () {
$.ajax({
url: '@Url.Action("Post","Home")',
type: 'POST',
dataType: 'json',
data: { a: "örnek", b: true },
success: function (gelenveri) {
},
error: function (hata) {
}
});
});
});