How to add the xaml file in ASP.net web page.
A:
Depends on what you want to do with that XAML file. :-)
If you want to use it with Silverlight, you need to learn how to write SL applications.
If you want to generate a static picture from the XAML to send to the client, you can look at this blog post.
Franci Penov
2009-02-26 08:20:30
A:
Use the Silverlight control:-
<object type="application/x-silverlight" width="100%" height="100%" id="slc">
<param name="source" value="/myfolder/myfile.xaml"/>
</object>
AnthonyWJones
2009-02-26 08:22:18