vote up 1 vote down star

How we can add the silverlight project into a aspx page. I had created one digital clock project in silverlight. But i don't know how to integrate with the aspx page. Thanks in advance..

flag

57% accept rate
Could you specify what you mean by integrate it with an aspx page. Do want to add the silverlight control or object to a web page, or is there a deeper integration that you are trying to accomplish? – Ryan Cook Nov 5 at 6:43
i want to add the silverlight control or object to a web page.. – Dilse Naaz Nov 5 at 6:47

1 Answer

vote up 2 vote down

Just to be clear: There is no need to use .Net to host silverlight.

It is a browser plugin and you use the html object tag to host it. Here is all the information you need:

How to: Add Silverlight to a Web Page by Using HTML

Also, here is a quick example:

<object width="300" height="300"
    data="data:application/x-silverlight-2," 
    type="application/x-silverlight-2" >
    <param name="source" value="SilverlightApplication1.xap"/>
</object>

If you are using Asp.Net, There is a project that contains sample server controls for hosting silverlight objects. You can get it here: ASP.NET Server Controls for Silverlight Samples

link|flag

Your Answer

Get an OpenID
or

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