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.

1

2 Answers 2

1

http://www.matthidinger.com/archive/2011/02/22/Progressive-enhancement-tutorial-with-ASP-NET-MVC-3-and-jQuery.aspx

asp.net MVC3 and jquery AJAX tutorial

Sign up to request clarification or add additional context in comments.

Comments

0
  $.ajax({
        type: "POST", 
        url: '@Url.Action("Action","Controller")',  
        data: { },
        contentType: "application/json;charset=utf-8",
        dataType: "json",
   success: function (result) {
            alert(data)
        } });

3 Comments

Adding some explanation would improve your answer considerably.
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.
I know what AJAX is. See also the following help-page: How do I write a good answer?

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.