Send and Receive data to Web Server
What is a good way to Send data to a web server and then receive and port the开发者_如何学编程 data to a Microsoft Access database on the web server?
Sounds like you need some tutorials. Here's one.
http://www.devtoolshed.com/content/building-web-service-aspnet-35
Note that there are MANY different ways to create a web service and consume it.
Examples include: Generic Handlers (.ashx), MS Web Services (.asmx), WCF services (.svc), etc.
All of them have features / benefits. Probably the easiest one by far is to use generic handlers which are great for building RESTful type services.
精彩评论