jQuery vs MicrosoftAjax in ASP.NET MVC

前端 未结 4 1643
不知归路
不知归路 2021-02-08 06:10

Under what circumstances would you use MicrosoftAjax over jQuery in an ASP.NET MVC application?

According to Scott Cate in this podcast Object Oriented AJAX with Scott C

4条回答
  •  失恋的感觉
    2021-02-08 06:49

    I have tried to use both more or less side by side.

    The builtin ajax helpers works fine.

    But jquery has a smaller footprint and is more transparent in use.

    And when using the ajax helpers I get immediate results but no sense of what goes on behind the scenes

    Besides If you have to bridge over into jquery in order to extend your ajax scenario, you might as well start there.

提交回复
热议问题