Is it possible to view a silverlight or asp.net 3.5 website deployed on IIS 6.0 in Windows CE 5.0 browser?

南楼画角 提交于 2019-12-12 17:33:14

问题


I am planning to buil a website in silverlight and deploy it on IIS 6.0. I am not sure

whether the application could be browsed in Windows CE 5.0 browser. If it is nto possible

to view silverlight application than is it possible to view asp.net 3.5 application in

Windows CE 5.0.


回答1:


What you can or can't view on the device browser depends a whole lot on what the page does and how it does it. Keep in mind that the browser is not as full-featured as a desktop browser and that OS is not the same as a desktop OS.

With that in mind, you can then look at what your page requires. For silverlight, the client needs Silverlight runtimes (you install those on your desktop, right)? There is no Silverlight client for Windows CE, so that means that it can't meet the requirements to view a Silverlight application.

For general ASP.NET (and really any other web technology) it depends. Do your pages use server-side controls to eventually emit basic HTML and Javascript to the client? If so, then there's a strong possibility it will work just fine. Do your pages require client side controls (Flash, ActiveX objects, etc)? Unless you have those controls for the client OS and processor, then those won't work either.

And after all of that, you also have to bear in mind that Windows CE is a modular OS, so it may or may not have a browser. Even if it does, it may or may not have scripting support. It all depends on what was baked into the OS from the OEM.

So the way to truly know if it will work is to try it.



来源:https://stackoverflow.com/questions/2183705/is-it-possible-to-view-a-silverlight-or-asp-net-3-5-website-deployed-on-iis-6-0

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!