Silverlight 3 tools not showing up in Visual Studio

I downloaded and installed Silverlight 3 Tools .

I want to use the Silverlight server element on an ASP.net page, but I do not have the Silverlight tab in my toolbar.

I also cannot find System.Web.Silverlight.dll to add it myself.

+3
source share
2 answers

This will happen because in silverlight 3 this control has been removed. You need to create the tag <object ...yourself. Here is a simple example: -

<object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">  
  <param name="source" value="ClientBin/SilverlightApplication1.xap"/>
  <param name="background" value="white" />
  <param name="minRuntimeVersion" value="3.0.40624.0" />
  <param name="autoUpgrade" value="true" />
  <a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=3.0.40624.0" style="text-decoration:none">
     <img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style:none"/>
  </a>
</object>

, SL, onError, silverlight.js, SL3.

+4

, Silverlight 3 Silverlight. asp: Silverlight Silverlight 3, . . :

ASP.NET Silverlight - Silverlight 2 SDK, MSDN (http://go.microsoft.com/fwlink/?LinkId=156721), Silverlight 3. Object Tag Silverlight.js . Silverlight 2 Silverlight 3 asp.net Silverlight, iframe , , .

Silverlight 2 3 .

+3

Source: https://habr.com/ru/post/1713665/


All Articles