0

Your backend could be PHP or Python but you want to use the controls from the ASP.NET toolkit is there a successful way to do this?

4

5 回答 5

2

为什么要在 PHP/Python 中使用 ASP.NET AJAX 工具包?

您是否考虑过其他非 ASP.NET 特定的 AJAX 库,例如 jQuery、Dojo、MooTools、YUI?

ASP.NET AJAX 和 ASP.NET AJAX 工具包以 ASP.NET 为中心,您将通过 PHP/Python 使用其他 AJAX 库获得更大的灵活性。

于 2008-09-10T14:17:31.257 回答
2

I don't think that it is possible.

The ASP.NET AJAX Toolkit is based on ASP.NET technique (what a surprise) and needs ASP.NET.

It contains server-side controls, which are translated to HTML and Javascript by the ASP.NET engine. It is not working without the engine.

However you can check the code itself to see how it is working, what it generates on the browser side and get ideas and Javascript codes to build into your application or framework.

Edit: I've just found an interesting project, which is in alpha stage, check this out.

于 2008-09-10T08:54:15.200 回答
1

are you talking about the ASP.NET AJAX Control Toolkit?

于 2008-09-10T08:50:12.590 回答
1

看看 Stephen Walther 博客上的这篇博文:

ASP.NET MVC 技巧 #36 – 创建弹出日历助手

在这篇文章中,他展示了如何使用“仅脚本”版本的 AJAX 控件工具包。此版本的 AJAX 控件工具包不包含服务器端控件或控件扩展器。它仅包含使用客户端 AJAX 行为所需的客户端文件——JavaScript、CSS、图像。

Stephen Walther 是 Microsoft 的高级项目经理,负责 ASP.NET MVC 内容和社区(他的职位是 ASP.NET MVC Ninja)。

于 2009-11-16T13:08:34.543 回答
0

我发现 AJAX Control Toolkit 中的大部分功能都可以通过 jQuery 等 javascript 框架来完成。

于 2009-01-22T16:08:55.387 回答