views:

29

answers:

3

hi,

i develop some design in silverlight and i want to use that design in asp.net (2.0) can i use the silverlight in 2.0

+1  A: 

Silverlight and ASP.NET are two separate things, there is nothing stopping you from using Silverlight together with any version of ASP.NET.

Henrik Söderlund
ok thank you Mr.Henrik
Surya sasidhar
A: 

Yes you can use ASP.NET 2.0 to host Silverlight 2.0 application. Even Silverlight application can be hosted on HTML page or jsp pages!

Manoj
thank you manoj
Surya sasidhar
A: 

Silverlight application is passed to client (to browser) as an browser object via plain HTML text:

<object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">...</object>

As a result you can make you app workable on static html web-site, that is hosted on any web-server and doesn't know anything about .NET (just copy xap-file there).

Budda