Using Silverlight for an entire website?

后端 未结 12 1656
渐次进展
渐次进展 2021-02-06 01:52

We need to build an administration portal website to support our client/server application. Since we\'re a .Net shop the obvious traditional way would be to do that in ASP.Net.

12条回答
  •  情话喂你
    2021-02-06 02:23

    Depends on your goals. If administration portal is part of application and will only be used from computers where your application is installed, there are plenty of advantages of going fully Silverlight - or even WPF.

    But if you can see a scenario where it will be used either from random PC or by random person, fully functional HTML/Javascript version is absolutely necessary.

    Some reasons are:

    • Most people don't have silverlight and you'll earn a good load of swearing if they have to download and install it. Some people who have it installed keep it disabled (together with flash and sometimes even images) to avoid distractions and speed up browsing.
    • When HTML site fails, user gets error page and reloads. When silverlight fails, it can hang or crash.
    • HTML is what is expected - both by users and web browsers: back and refresh buttons work as they should, hyperlinks and forms work as expected.
    • Slow internet is still very common, both in remote areas and mobile devices.

提交回复
热议问题