Silverlight 2.0
asp.net 3.5
I created a silverlight application.
I embedded it in an aspx page. Works fine.
However, I then created a new Web Content Form, associated it with a master page and then embedded it in the Web Content Form.
Nothing shows up. No errors, nothing.
Any suggestions?
Here's the markup in the asp:content
<
asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<table width="100%" class="contentTable">
<tr>
<td>
<asp:Label CssClass="NewsTitle" ID="lblPageTitle" Text="Design Center" runat="server"></asp:Label><br />
<br />
</td>
</tr>
<tr>
<td>
<div style="height: 100%;">
<asp:Silverlight ID="Silverlight2" runat="server" Source="~/ClientBin/DesignCenter.xap"
MinimumVersion="3.0.40307.0" Width="100%" Height="100%" />
</div>
</td>
</tr></table>
</
asp:Content>