tags:

views:

610

answers:

2

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
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