Reputation: 67
I am new to ASP.Net MVC 3 and interested to learn Ajax implementation in MVC.
Is there any ebook or tutorial to learn AJAX in ASP.Net MVC.
Upvotes: 1
Views: 718
Reputation: 1
$.ajax({
type: "POST",
url: '@Url.Action("Action","Controller")',
data: { },
contentType: "application/json;charset=utf-8",
dataType: "json",
success: function (result) {
alert(data)
} });
Upvotes: 0