用于 ASp.net MVC 的 AJAX 工具包
有没有asp.net MVC的ajax工具包
Is there any ajax toolkit for asp.net MVC
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有asp.net MVC的ajax工具包
Is there any ajax toolkit for asp.net MVC
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
由于 MVC 没有 ViewState 或 Web 表单回发模型,因此 AjaxControlToolkit 无法使用它。
有一个项目可以执行此操作(http://mvccontroltoolkit.codeplex.com/),但还没有释放。
有许多博客都提供了不同的控件,但说实话,我建议查看 jQuery 及其插件(http: //www.jqueryui.com/)。 MVC 更自然地适合这些,它不是基于控制的。
As MVC does not have ViewState or the Web Forms postback model the AjaxControlToolkit will not work with it.
There is a project to do this (http://mvccontroltoolkit.codeplex.com/) but it's not yet released.
There are numerous blogs where have got different controls working but to be honest I'd suggest looking at jQuery and its plugins (http://www.jqueryui.com/). MVC lends itself far more naturally to these, it is not control-based.
这是另一个讨论此问题的资源: http://www.hanselman.com/blog/ASPNETMVCPreview4UsingAjaxAndAjaxForm.aspx
此外,ASP.NET MVC 非常容易让您自己制作令人惊叹的 ajax 控件,特别是与 jQuery 结合使用时。
Here's another resource talking about this: http://www.hanselman.com/blog/ASPNETMVCPreview4UsingAjaxAndAjaxForm.aspx
In addition, ASP.NET MVC lends itself quite easily to making your own amazing ajax controls, especially when combined with jQuery.
在谈论类似于 AJAX 工具包中的用户控件时,ASP.NET MVC 的重点更多地放在 HTML 和客户端代码上 - 您可能想查看优秀的 http://www.jqueryui.com/ 一些不错的客户端控件。
The emphasis in ASP.NET MVC is more on HTML and client-side code when talking about user-control similar to those in the AJAX Toolkit - you may like to check out the excellent http://www.jqueryui.com/ for some good client-side controls.