Adventures with Silverlight 3.0 and SharePoint – Part 2

Just a quick update on this.  I had to make a few changes to my site and I now have it working!

To fix the master page problem, I needed to load it from code behind.  Once I did that, I was able to have that show up.  But then I had a problem of the Silverlight application didn’t show up at all.

To get around that I needed to get rid of the width and height settings from the Silverlight object.  So I needed to change from using width=100% height=100% to style=”width: 700px; height: 700px”

After making that change, the only thing left was to move my connection string settings into the web.config file for SharePoint.  After that was done, my Silverlight Navigation project loaded just fine in SharePoint and was able to use RIA Data Services.

 

I hope these two posts help anyone else looking to do this.  Let me know if you run into any other problems or have any suggestions.