views:

54

answers:

1

I am trying to bulid a WPF web application.I have 2 projects in the solution .One is of type WPF web application and another is of type ASP.NET web application where i need to embed the WPF stuff.The XAML file runs file when i set startup project as the WPF web app project.How can i add/embed this into the Default.aspx of my ASP.NET Web app project ?

+1  A: 

You are creating what is known as a XBAP (XAML Browser Application).

Follow these deployment instructions from MSDN:

WPF XAML Browser Applications Overview

Justin Niessner