I know there've been other questions regarding this, but what I need is just the very basic information. What dll's am I required to upload to an umbraco bin directory to be able to run silverlight? I've seen the silverlight project, and I actually tried to upload the package at http://silverlightumbraco.codeplex.com/ but I was unable to load up the package to my v.4 umb installation. Besides I didn't want the whole website, as I mentioned I only wanted the very foundation for uploading my own silverlight webapps to my umbraco site.
Installing silverlight in umbraco
I know there've been other questions regarding this, but what I need is just the very basic information. What dll's am I required to upload to an umbraco bin directory to be able to run silverlight? I've seen the silverlight project, and I actually tried to upload the package at http://silverlightumbraco.codeplex.com/ but I was unable to load up the package to my v.4 umb installation. Besides I didn't want the whole website, as I mentioned I only wanted the very foundation for uploading my own silverlight webapps to my umbraco site.
Thanks a bunch
I don't think you need any dll's. Am I missing something? See here for a clear example of how to run a silverlight control within a web page. http://developer.yahoo.com/dotnet/silverlight/embedding.html
you are absolutely right. It was quite sufficient to add
<object type="application/x-silverlight-2"
data="data:application/x-silverlight," >
<param name="source" value="/clientbin/silverlight.xap"/>
<object>
to a masterpage and that would display the silverlight app just fine
is working on a reply...