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
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
Silverlight and ASP.NET are two separate things, there is nothing stopping you from using Silverlight together with any version of ASP.NET.
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!
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).