Is there a good explanation on what ASP.NET MVC3 is doing with its ajax helpers and rendering unobtrusive javascript?

The Ajax Helper methods render Html to your page.

The Ajax Helper methods render Html to your page. The best way to see exactly what an Ajax Helper method adds is by viewing the source when it renders in your browser at runtime. You can even see the unobtrusive stuff rendered in the source if you remove your reference to the jquery.

Unobtrusive-ajax.js. You can also write your own Ajax (and Html) Helper methods in the form of Extension Methods.

MVC3 Ajax helpers simply add some css class names and data on the form element. You have to include jquery. Unobtrusive-ajax.

Js in your project. When the dom is ready, this script searches form elements with the above css class names. When the form is submitted, the script catch the event, serialize the form values, use $.

Ajax to call the target url, and can put the response into a given element id, or give it to your custom js method depending on the options you used. Input-validation-error and input-validation-valid classes are used for unobtrusive validation, which is not the same as unobtrusive ajax (they only share the word unobtrusive). It needs jquery.validate.unobtrusive.

Js and transform microsoft script validation into jquery validate validation. See rocketsquared.com/wiki/Plugins/Validation for details about jquery validate validation.

With MVC 3 they switched to jQuery AJAX completely (MS Ajax is a long gone friend/fiend now) – BigMike Nov 16 at 12:42 They do not. Default is to use MsAjax. You now have the choice.

With previous versions you don't. MsAjax is undocumented in many ways. JQuery is.

Choose yourself, but I prefer the jQuery fluid javascript to MsAjax monstruous but meaningfuls names. – Softlion Nov 17 at 13:28.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions