.net web services

aspnet

New member
Joined
May 18, 2003
Messages
1
Is there any site which provides a complete example of developing a simple B2B application using MS .Net. (eg. Customer can log in, buy product, pay for it, log out.)
 
goto www.asp.net and look at the starter kits one of them called IBuyStore has a simple portal. There is also a forum on the site, where people have developed it into a more complete solution.

The IBuyStore is a simple ecommerce site with full source code and even has a web services portal.
 
Building a web service is pretty easy if your confortable wiht making and using classes. You make it just like any other class except you have to inherit System.Web.Services.WebService
and import system.web.services.
www.asp.net is a good start though
 
Back
Top