I am working on an ASP.Net MVC Application (C# and razor). I am wondering what is the difference between those 2 nuget packages:
- Microsoft jQuery Unobtrusive
- Microsoft Ajax
Thanks
I am working on an ASP.Net MVC Application (C# and razor). I am wondering what is the difference between those 2 nuget packages:
Thanks
Microsft jQuery Unobtrusive replaces the obsolete Microsoft Ajax.
After importing the package to your project, jquery.unobtrusive-ajax.js allows you to use the Ajax*
AjaxHelpers in the Razor views.
However, many recommend against using the AjaxHelpers in favor coding these yourself with plain jQuery.
It seems in MVC6 they have removed the AjaxHelpers.
Which updates the question Is "jquery.unobtrusive-ajax.js" obsolete?