1

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.

Sujith E S
  • 67
  • 1
  • 10

2 Answers2

0
  $.ajax({
        type: "POST", 
        url: '@Url.Action("Action","Controller")',  
        data: { },
        contentType: "application/json;charset=utf-8",
        dataType: "json",
   success: function (result) {
            alert(data)
        } });
  • 2
    Adding some explanation would improve your answer considerably. – Jaap Dec 15 '16 at 09:04
  • AJAX is an acronym standing for Asynchronous JavaScript and XML and this technology help us to load data from the server without a browser page refresh. If you are new with AJAX, I would recommend you go through our Ajax Tutorial before proceeding further. JQuery is a great tool which provides a rich set of AJAX methods to develop next generation web application. – Krishan Pal Dec 15 '16 at 09:27
  • I know what AJAX is. See also the following help-page: [How do I write a good answer?](http://stackoverflow.com/help/how-to-answer) – Jaap Dec 15 '16 at 09:48