Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to use WPF Controls in our ASP.Net Project? Since WPF has enriched and new featured controls .

share|improve this question

1 Answer 1

up vote 5 down vote accepted

No, you can't use WPF Controls in ASP.Net Project because they are two different technologies. There is a Microsoft SilverLight, which is made for this purposes.

WPF exists as a subset of .NET Framework types that are for the most part located in the System.Windows namespace and used for creating of standalone applications. It like the next generation of winForms. Asp.Net is used to make the web applications, based on System.Web Namespace. Microsoft created the technology, named SilverLight, which is some kind of plugin for web applications for integrating the WPF functionality into you page.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.