Click here to Skip to main content
15,919,749 members
Please Sign up or sign in to vote.
1.00/5 (5 votes)
See more:
what is wcf wpf service in asp.net and how these are services help us in asp.net please me with a complete example
Posted
Comments
[no name] 22-Aug-12 14:35pm    
Have you even bothered to read this http://www.codeproject.com/Articles/64628/Code-Project-Quick-Answers-FAQ?

No-one is going to write a complete example for you. I see you're still flooding these boards with random, easily researched questions.

WCF is a layer of abstraction over web services, which an ASP.NET web site can host. WPF has nothing to do with ASP.NET, except that Silverlight can live inside a website and is based on WPF.
 
Share this answer
 
 
Share this answer
 
v2
WCF

A communication-oriented set of APIs and a "runtime" inside .NET to make two (or more) systems talk to one another. It basically replaces ASMX (ASP.NET web services), .NET remoting (object remoting) and a few other communication-related API's and products in the .NET space.

Refere this link, you will het complete set of e,g along with other details,
http://msdn.microsoft.com/en-us/vstudio/aa496123[^]

WPF
Windows Presentation Foundation and it is essentially a new API for creating a graphical user interfaces for the Windows platform.
it makes use of XAML (Extensible Application Markup Language) which is a unique way of including code in a mark up.
GUI consists of two files - .xaml and code-behind .cs

Hope this helps.
cheers
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900