Silverlight 需要 AJAX、JQuery 等
我刚刚开始学习Silverlight。
我发现silverlight用于开发WebApplication。
现在,在Web应用程序中,我们通常使用AJAX、Jquery等来解决性能问题。
假设 AJAX 将仅将网页的所需部分提交给网络服务器。
现在我的问题是 是否需要在 SilverLight 应用程序中使用 AJAX、JQUERY ete
或者它会在 silverlight 应用程序中自动实现?
谢谢.....
I have just started to learn Silverlight.
i have found that silverlight is used for developing WebApplication.
Now in generally WebApplication we are using AJAX,Jquery Etc. for performance issue.
suppose AJAX will submit only desired part of webpage to webserver.
now my question is,
does it required to use AJAX,JQUERY ete in SilverLight application
or it will automatically implemented in silverlight application?
Thanks.....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您确实不需要在 Silverlight 应用程序中使用 Ajax 或 Jquery,Microsoft Silverlight 提供了新一代的高质量音频和视频、引人入胜的媒体体验以及 Web 交互式应用程序。
在某种程度上,Silverlight 很像 Adobe 的 Flash,因为它支持许多“普通旧式 HTML”根本不支持的功能,例如动画、视频、多媒体等。事实上,Silverlight 在很多方面都被视为 Flash 的竞争对手。
在这里观看:http://www.questpond.com/DemoVideos1/SilverLight/WhatisSilverLight /WhatisSilverLight.php
you really don't need Ajax or Jquery in Silverlight Application, Microsoft Silverlight delivers a new generation of high-quality audio and video, engaging media experiences, and interactive applications for the Web.
In a way, Silverlight is much like Adobe's Flash in that it enables a bunch of functionality that "plain old HTML" simply doesn't support such as animation, video, multimedia and more. In fact, Silverlight is considered in many ways a Flash competitor.
watch it here : http://www.questpond.com/DemoVideos1/SilverLight/WhatisSilverLight/WhatisSilverLight.php
您在 Silverlight 中编写整个应用程序,并将单个 Silverlight 对象放置到网页上。
应用程序可以根据您的需要简单或复杂,并且与服务器的通信和 UI 的更新是在应用程序内部处理的。
您不需要任何 JavaScript - 除非您的 Silverlight 需要与页面上的其他 HTML 元素进行通信。
You write your whole application in Silverlight and put a single Silverlight object onto the web page.
The application can be as simple or complex as you wish and the communication to the server and update of the UI is handled inside the application.
You don't need any JavaScript - unless your Silverlight needs to communicate with other HTML elements on the page.