vote up -3 vote down star

While using

<asp:Silverlight ID="Xaml1" runat="server"/>

an error occurs. What can we do?

flag

0% accept rate
Please be more specific and/or precise. No one can answer you non-question unless there is a psychic here. – Clement Herreman Sep 8 at 13:33
I've tidied up the markdown to make the xaml appear, but it would really help if you told us the exact error message the occurs. – Marc Gravell Sep 8 at 13:33

2 Answers

vote up 7 vote down

That control no longer exists in ASP.NET (see Silverlight 3 release notes). You now include the object tag in the page. If you don't know the syntax, you can just create a new Silverlight project and just copy it from the template.

<object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">
<param name="source" value="ClientBin/MySilverlightApplication.xap"/>   	  
<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>

Specify the xap file in the source attribute.

link|flag
vote up 1 vote down

<asp:Silverlight> does not work in silverlight 3. You should use <object>

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.