Sujith E S
Sujith E S

Reputation: 67

ASP.Net MVC 3 Ajax

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

Answers (2)

Krishan Pal
Krishan Pal

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

Related Questions